We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca994df commit e61aa44Copy full SHA for e61aa44
1 file changed
.github/workflows/warn_release.yml
@@ -1,12 +1,14 @@
1
on:
2
workflow_call: # So it can be used by our other repos
3
pull_request: # And also be used for itself
4
- branches: ['release*']
+ branches: ['release/**']
5
workflow_dispatch: # manual trigger via GitHub UI
6
7
jobs:
8
warn-release:
9
runs-on: ubuntu-latest
10
+ permissions:
11
+ pull-requests: write
12
steps:
13
- uses: actions/github-script@v7
14
with:
@@ -22,5 +24,5 @@ jobs:
22
24
- [ ] A response to a customer ask
23
25
- [ ] A change per our security policy
26
- [ ] A non-functional change (i.e. changes needed for building an older version)
- - [ ] A change that has been granted an exception (please comment)
27
+ - [ ] A change that has been granted an exception (please comment)`
28
})
0 commit comments