You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
386 B
YAML
19 lines
386 B
YAML
name: Check modules on registry.coder.com
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "23 * * * *" # Runs at 23 minutes past the hour.
|
|
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: |
|
|
./check.sh
|