We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be7c86e commit cf44ec9Copy full SHA for cf44ec9
1 file changed
.github/workflows/generation_check.yaml
@@ -1,9 +1,9 @@
1
---
2
name: generation-check
3
on:
4
- schedule:
5
- # Runs every day at 4:00 AM UTC
6
- - cron: '0 4 * * *'
+ push:
+ branches:
+ - main
7
# Allows manual triggering for debugging purpose.
8
workflow_dispatch:
9
permissions:
@@ -35,10 +35,10 @@ jobs:
35
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
run: |
37
if [ -n "$(git status --porcelain)" ]; then
38
- TITLE="Daily regeneration check found diff"
+ TITLE="Regeneration check found diff"
39
RUN_URL="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
40
DIFF_STAT=$(git diff --stat)
41
- BODY="The daily [regeneration check]($RUN_URL) found a diff.
+ BODY="The post-submit [regeneration check]($RUN_URL) found a diff.
42
43
Diff summary:
44
\`\`\`
0 commit comments