We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 409a010 + 3722dc7 commit c00446dCopy full SHA for c00446d
.github/workflows/update-core-deps.yml
@@ -26,6 +26,15 @@ jobs:
26
- id: git-diff
27
run: git diff --quiet HEAD baselines
28
continue-on-error: true
29
+ # TODO: Remove the following command after the fork is created
30
+ - 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
+ continue-on-error: true
38
- uses: peter-evans/create-pull-request@v3
39
if: ${{ steps.git-diff.outcome == 'failure' }}
40
with:
0 commit comments