We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 496a353 commit 8d9a161Copy full SHA for 8d9a161
.github/workflows/release.yaml
@@ -68,11 +68,11 @@ jobs:
68
69
# Check whether the release should be published. We publish only when the trigger PR is
70
# 1. merged
71
- # 2. to the master branch
+ # 2. to the main branch
72
# 3. with the label 'release:publish', and
73
# 4. the title prefix '[chore] Release '.
74
if: github.event.pull_request.merged &&
75
- github.ref == 'master' &&
+ github.ref == 'main' &&
76
contains(github.event.pull_request.labels.*.name, 'release:publish') &&
77
startsWith(github.event.pull_request.title, '[chore] Release ')
78
0 commit comments