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.
changelog: released entry changed
--warn-only
1 parent d82e17a commit 0b520dfCopy full SHA for 0b520df
.github/workflows/changelog.yml
@@ -9,6 +9,8 @@ on:
9
- opened
10
- synchronize
11
- reopened
12
+ - labeled
13
+ - unlabeled
14
15
env:
16
#
@@ -41,6 +43,7 @@ jobs:
41
43
with:
42
44
fetch-depth: 0
45
46
+ # NOTE: Keep label name(s) in sync. with `xtask`'s implementation.
47
- name: Run `cargo xtask changelog …`
48
run: |
- cargo xtask changelog --emit-github-messages "origin/${{ github.event.pull_request.base.ref }}"
49
+ cargo xtask changelog --emit-github-messages "origin/${{ github.event.pull_request.base.ref }}" ${{ contains(github.event.pull_request.labels.*.name, 'changelog: released entry changed') && '--warn-only' || '' }}
0 commit comments