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
--allow-released-changes
1 parent 229253d commit f1bb623Copy full SHA for f1bb623
.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 "origin/${{ github.event.pull_request.base.ref }}"
49
+ cargo xtask changelog "origin/${{ github.event.pull_request.base.ref }}" ${{ contains(github.event.pull_request.labels.*.name, 'changelog: released entry changed') && '--allow-released-changes' || '' }}
0 commit comments