We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63e0d4 commit 019b660Copy full SHA for 019b660
.github/workflows/tag-release.yml
@@ -17,7 +17,8 @@ jobs:
17
# The assumption is that when manual changes happen, we want to handle
18
# tagging manually too.
19
name: Check for release commit and create tag
20
- if: github.event.head_commit.author.username == 'github-actions[bot]'
+ # The author is emscripten-bot when triggered from Chromium CI, and github-actions when manually triggered.
21
+ if: ${{ github.event.head_commit.author.username == 'github-actions[bot]' || github.event.head_commit.author.username == 'emscripten-bot' }}
22
runs-on: ubuntu-latest
23
outputs:
24
is_release: ${{ steps.create-tag.outputs.result }}
0 commit comments