File tree Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change 12
12
- cron : ' 0 2 * * *'
13
13
14
14
jobs :
15
- mirror-to-docs-repo :
16
- runs-on : ubuntu-latest
17
- steps :
18
- - name : Checkout
19
- uses : actions/checkout@v3
20
- with :
21
- fetch-depth : 0
22
- token : ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }}
23
- - name : Push to docs repo
24
- run : |
25
- SUBREPO_PATH=docs
26
- git config --global user.name AztecBot
27
- git config --global user.email [email protected]
28
-
29
- if ./scripts/git_subrepo.sh push $SUBREPO_PATH --branch=main; then
30
- git fetch # in case a commit came after this
31
- git rebase origin/master
32
- git commit --amend -m "$(git log -1 --pretty=%B) [skip ci]"
33
- git push
34
- fi
35
-
36
15
mirror-to-build-system-repo :
37
16
runs-on : ubuntu-latest
38
- # Force sequential.
39
- needs : mirror-to-docs-repo
40
17
steps :
41
18
- name : Checkout
42
19
uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments