Call for testing webkitgtk-6-gnome-2404
#9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Promote to stable | |
on: | |
issue_comment: | |
types: | |
- created | |
permissions: | |
issues: write | |
jobs: | |
promote-content: | |
name: ⬆️ Promote Content to stable | |
environment: "2404 Branch" | |
runs-on: ubuntu-latest | |
if: | | |
( !github.event.issue.pull_request ) | |
&& contains(github.event.comment.body, '/promote ') | |
&& contains(github.event.issue.body, '`webkitgtk-6-gnome-2404`') | |
&& contains(github.event.*.labels.*.name, 'testing') | |
steps: | |
- name: ⬆️ Promote to stable | |
uses: snapcrafters/ci/promote-to-stable@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
store-token: ${{ secrets.SNAP_STORE_STABLE }} | |
snapcraft-project-root: "webkitgtk-6-gnome-2404" | |
promote-sdk: | |
name: ⬆️ Promote SDK to stable | |
environment: "2404 Branch" | |
runs-on: ubuntu-latest | |
if: | | |
( !github.event.issue.pull_request ) | |
&& contains(github.event.comment.body, '/promote ') | |
&& contains(github.event.issue.body, '`webkitgtk-6-gnome-2404-sdk`') | |
&& contains(github.event.*.labels.*.name, 'testing') | |
steps: | |
- name: ⬆️ Promote to stable | |
uses: snapcrafters/ci/promote-to-stable@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
store-token: ${{ secrets.SNAP_STORE_STABLE }} | |
snapcraft-project-root: "webkitgtk-6-gnome-2404-sdk" |