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 64d2fc2 commit 55b7a7eCopy full SHA for 55b7a7e
.github/workflows/schedule.yml
@@ -0,0 +1,19 @@
1
+name: Update LeetCode gist
2
+on:
3
+ schedule:
4
+ - cron: '0 0 * * *'
5
+ push:
6
+ branches: main
7
+
8
+jobs:
9
+ update-leetcode-gist:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - run: npm install
14
+ - name: Update LeetCode Gist
15
+ uses: puiiyuen/leetcode-box@main
16
+ env:
17
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
18
+ GIST_ID: ${{ secrets.GIST_ID }}
19
+ LEETCODE_USERNAME: ${{ secrets.LEETCODE_USERNAME }}
0 commit comments