Check modules on registry.coder.com #46
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 modules on registry.coder.com | |
on: | |
schedule: | |
- cron: "*/13 * * * *" # Runs every 13th minute | |
workflow_dispatch: # Allows manual triggering of the workflow if needed | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run check.sh | |
run: | | |
./.github/scripts/check.sh |