We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab980eb commit 5bb78a7Copy full SHA for 5bb78a7
.github/workflows/ship-it.yml
@@ -14,6 +14,9 @@ jobs:
14
# path between next and master
15
fetch-depth: 0
16
ref: next
17
+ # This is required to allow the final push to trigger dependent workflows
18
+ # (does token need write access to workflows? Let's find out)
19
+ # See https://stackoverflow.com/a/64078507/1618881
20
token: ${{ secrets.SHIP_IT_TOKEN }}
21
22
- name: Checkout master branch
@@ -33,5 +36,4 @@ jobs:
33
36
34
37
- name: Push updated master to origin
35
38
if: steps.commits-to-ship.outputs.count != '0'
- run: |
- git push origin master
39
+ run: git push origin master
0 commit comments