-
Notifications
You must be signed in to change notification settings - Fork 24
31 lines (30 loc) · 984 Bytes
/
chron.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: "Refresh Submodules"
on:
schedule:
- cron: "0 8 * * 1-5"
workflow_dispatch:
jobs:
refresh-modules:
name: Refresh Submodules
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Create local changes
run: |
git submodule update --init --recursive
git submodule update --recursive --remote
- name: Commit files
continue-on-error: true
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "Update Submodules" -a
- name: Push changes
continue-on-error: true
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}