File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 26
26
with :
27
27
url : ' https://api.github.com/repos/${{ github.repository }}/git/ref/heads/${{ env.branch-name }}'
28
28
method : ' GET'
29
- bearerToken : ${{ secrets.GITHUB_TOKEN }}
29
+ bearerToken : ${{ secrets.GH_BOT_TOKEN }}
30
30
customHeaders : ' {"Accept": "application/vnd.github+json"}'
31
31
32
32
- name : Delete branch
36
36
with :
37
37
url : ' https://api.github.com/repos/${{ github.repository }}/git/refs/heads/${{ env.branch-name }}'
38
38
method : ' DELETE'
39
- bearerToken : ${{ secrets.GITHUB_TOKEN }}
39
+ bearerToken : ${{ secrets.GH_BOT_TOKEN }}
40
40
customHeaders : ' {"Accept": "application/vnd.github+json"}'
41
41
outputs :
42
42
check-branch-status : ${{ steps.check-branch.outputs.requestError && fromJson( steps.check-branch.outputs.requestError ).status || false }}
60
60
- name : Update Browserslist database and create PR if applicable
61
61
uses : c2corg/browserslist-update-action@v1
62
62
with :
63
- github_token : ${{ secrets.GITHUB_TOKEN }}
63
+ github_token : ${{ secrets.GH_BOT_TOKEN }}
64
64
branch : ${{ env.branch-name }}
65
65
commit_message : ' Update Browserslist database.'
66
66
title : ' Update Browserslist Database'
Original file line number Diff line number Diff line change 82
82
- uses : actions/checkout@v3
83
83
with :
84
84
ref : gh-pages
85
+ token : ${{ secrets.GH_BOT_TOKEN }}
85
86
- name : Download artifacts
86
87
uses : actions/download-artifact@v3
87
88
with :
@@ -124,6 +125,7 @@ jobs:
124
125
- uses : actions/checkout@v3
125
126
with :
126
127
ref : gh-pages
128
+ token : ${{ secrets.GH_BOT_TOKEN }}
127
129
- name : Remove storybook
128
130
env :
129
131
PULL_REQUEST_NUMBER : ${{ github.event.number }}
You can’t perform that action at this time.
0 commit comments