We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efe0c18 commit 71e4fc4Copy full SHA for 71e4fc4
.github/workflows/update-core-deps.yml
@@ -4,6 +4,7 @@ on:
4
schedule:
5
# https://crontab.guru/#5_8_*_*_*
6
- cron: "5 8 * * *"
7
+ pull_request: null
8
9
# Conditional runs
10
# https://stackoverflow.com/a/61832535/2460034
@@ -27,7 +28,13 @@ jobs:
27
28
run: git diff --quiet HEAD baselines
29
continue-on-error: true
30
# TODO: Remove the following command after the fork is created
- - run: gh repo fork --remote false
31
+ - env:
32
+ TS_TOKEN: ${{ secrets.TS_GITHUB_BOT_AUTH }}
33
+ run: |
34
+ echo $TS_TOKEN > ts_token
35
+ gh auth login --with-token < ts_token
36
+ gh repo fork --remote false
37
+ rm ts_token
38
39
- uses: peter-evans/create-pull-request@v3
40
if: ${{ steps.git-diff.outcome == 'failure' }}
0 commit comments