We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b2945e commit 9b3e993Copy full SHA for 9b3e993
1 file changed
.github/workflows/changelog.yml
@@ -19,8 +19,10 @@ jobs:
19
- name: Check for skip-changelog label
20
id: skip
21
shell: bash
22
+ env:
23
+ SKIP_CHANGELOG: ${{ contains(github.event.pull_request.labels.*.name, 'skip-changelog') }}
24
run: |
- if ${{ contains(github.event.pull_request.labels.*.name, 'skip-changelog') }}; then
25
+ if [ "$SKIP_CHANGELOG" = "true" ]; then
26
echo "skip=true" >> "$GITHUB_OUTPUT"
27
echo "PR has 'skip-changelog' label; bypassing changelog check."
28
else
0 commit comments