Check Content Version #7
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: Check Content Version | |
on: | |
schedule: | |
- cron: '0 * * * *' # Runs every hour | |
workflow_dispatch: # Allows manual trigger from GitHub Actions tab | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Make script executable | |
run: chmod +x scripts/check-version.sh | |
shell: bash | |
- name: Run check-version.sh script | |
run: scripts/check-version.sh | |
shell: bash |