Skip to content

Commit 9f4a979

Browse files
committed
docs: add more comments to workflows
1 parent c701698 commit 9f4a979

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- python.json
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v5 # required for running the local validate action in the next step
1919
- uses: ./validator
2020
with:
2121
config: ${{ matrix.config }}

.github/workflows/trigger.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ on:
55
- trigger.ts
66
- .github/workflows/trigger.yml
77
schedule: # make sure renovate checks at least once an hour
8-
- cron: "30 * * * *" # hourly https://crontab.guru/#0_*_*_*_*
8+
# every hour at minute thirty https://crontab.guru/#30_%2A_%2A_%2A_%2A
9+
- cron: "30 * * * *"
910
workflow_dispatch: # trigger it for other repos from the browser
1011
inputs:
1112
repo:

0 commit comments

Comments
 (0)