Update daily-live manifests #1444
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update daily-live manifest | |
on: | |
schedule: | |
- cron: "0 12,18 * * *" | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the branch | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: daily-live | |
token: ${{ secrets.PAT }} | |
- name: update manifest files | |
run: | | |
chmod +x "${GITHUB_WORKSPACE}/.github/update.sh" | |
"${GITHUB_WORKSPACE}/.github/update.sh" | |
- name: commit | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update daily-live manifest |