Regular commiting #107
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: Regular commiting | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 1 * * */5' | |
# ONLY EVER RUN ONE AT A TIME | |
concurrency: ${{ github.workflow }} | |
jobs: | |
update-metadata: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Code | |
with: | |
fetch-depth: 1 | |
- run: "date > .metadata" | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Updating metadata" | |
commit_user_name: David Collom [Auto] | |
commit_user_email: [email protected] | |
file_pattern: ".metadata" | |
skip_checkout: true |