We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efe0c18 commit 3722dc7Copy full SHA for 3722dc7
.github/workflows/update-core-deps.yml
@@ -27,7 +27,13 @@ jobs:
27
run: git diff --quiet HEAD baselines
28
continue-on-error: true
29
# TODO: Remove the following command after the fork is created
30
- - run: gh repo fork --remote false
+ - env:
31
+ TS_TOKEN: ${{ secrets.TS_GITHUB_BOT_AUTH }}
32
+ run: |
33
+ echo $TS_TOKEN > ts_token
34
+ gh auth login --with-token < ts_token
35
+ gh repo fork --remote false
36
+ rm ts_token
37
38
- uses: peter-evans/create-pull-request@v3
39
if: ${{ steps.git-diff.outcome == 'failure' }}
0 commit comments