We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 877555b + e51eda3 commit dc4a847Copy full SHA for dc4a847
1 file changed
.github/workflows/branch-deploy.yaml
@@ -36,8 +36,6 @@ on:
36
- synchronize
37
- reopened
38
- closed
39
- branches-ignore:
40
- - 'release-**'
41
paths-ignore:
42
- 'docs/**'
43
@@ -57,7 +55,8 @@ jobs:
57
55
runs-on: ubuntu-latest
58
56
if: |
59
(github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch') &&
60
- github.actor != 'dependabot[bot]'
+ github.actor != 'dependabot[bot]' &&
+ !startsWith(github.head_ref, 'release-')
61
outputs:
62
is_org_member: ${{ steps.validate.outputs.is_member }}
63
steps:
0 commit comments