File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 39
39
- name : Merge to master
40
40
uses : actions/github-script@v6
41
41
with :
42
- github-token : ${{ secrets.GITHUB_TOKEN }}
42
+ github-token : ${{ github.token }}
43
43
script : |
44
44
github.rest.repos.merge({
45
45
owner: context.repo.owner,
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ jobs:
126
126
$RELEASE_TRACKER_URL/logProduction
127
127
- name : Create Github release
128
128
env :
129
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
129
+ GITHUB_TOKEN : ${{ github.token }}
130
130
run : |
131
131
# Get the newest release tag for the firebase package (e.g. [email protected] )
132
132
NEWEST_TAG=$(git describe --tags --match "firebase@[0-9]*.[0-9]*.[0-9]*" --abbrev=0)
Original file line number Diff line number Diff line change 78
78
# TODO: Make these flags defaults in the release script.
79
79
run : yarn release --releaseType Staging --ci --skipTests --skipReinstall --ignoreUnstaged
80
80
env :
81
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
81
+ GITHUB_TOKEN : ${{ github.token }}
82
82
NPM_TOKEN_ANALYTICS : ${{secrets.NPM_TOKEN_ANALYTICS}}
83
83
NPM_TOKEN_ANALYTICS_INTEROP_TYPES : ${{secrets.NPM_TOKEN_ANALYTICS_INTEROP_TYPES}}
84
84
NPM_TOKEN_ANALYTICS_TYPES : ${{secrets.NPM_TOKEN_ANALYTICS_TYPES}}
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ jobs:
101
101
- name : Run coverage
102
102
uses : coverallsapp/github-action@master
103
103
with :
104
- github-token : ${{ secrets.GITHUB_TOKEN }}
104
+ github-token : ${{ github.token }}
105
105
path-to-lcov : ./lcov-all.info
106
106
continue-on-error : true
107
107
@@ -151,7 +151,7 @@ jobs:
151
151
- name : Run coverage
152
152
uses : coverallsapp/github-action@master
153
153
with :
154
- github-token : ${{ secrets.GITHUB_TOKEN }}
154
+ github-token : ${{ github.token }}
155
155
path-to-lcov : ./lcov-all.info
156
156
continue-on-error : true
157
157
@@ -192,7 +192,7 @@ jobs:
192
192
- name : Run coverage
193
193
uses : coverallsapp/github-action@master
194
194
with :
195
- github-token : ${{ secrets.GITHUB_TOKEN }}
195
+ github-token : ${{ github.token }}
196
196
path-to-lcov : ./lcov-all.info
197
197
continue-on-error : true
198
198
test-firestore-integration :
You can’t perform that action at this time.
0 commit comments