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 4856311 commit 47e6833Copy full SHA for 47e6833
.github/workflows/cron.yml
@@ -14,7 +14,7 @@ jobs:
14
- name: Checkout
15
uses: actions/checkout@v4
16
with:
17
- token: ${{ secrets.GITHUB_TOKEN }}
+ token: ${{ secrets.GH_TOKEN }}
18
- name: Setup Node.js
19
uses: actions/setup-node@v4
20
@@ -33,7 +33,7 @@ jobs:
33
DEBUG="ua*" node bin/update.js
34
git add src/index.json src/desktop.json src/mobile.json
35
git diff-index --quiet HEAD || git commit -m 'build(update): user agents' --no-verify
36
- git push || true
+ git push origin ${{ github.head_ref }} || true
37
curl -fsS -m 10 --retry 5 -o /dev/null https://hc-ping.com/2345b25e-fe7d-4efd-b085-5886e6c85cc7
38
flush:
39
needs: [update]
0 commit comments