We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e45f48a commit 11242daCopy full SHA for 11242da
1 file changed
.github/workflows/audit_consumers.yml
@@ -1,9 +1,12 @@
1
name: Audit Consumers
2
3
on:
4
- # Runs at midnight on Mondays 03:45 UTC, or manually triggered
+ push:
5
+ branches:
6
+ - file-audit-issue
7
+ # Runs on the 1st and 15th of every month, at 03:45 UTC, or manually triggered
8
schedule:
- - cron: "45 3 * * 1"
9
+ - cron: "45 3 1,15 * *"
10
workflow_dispatch:
11
12
jobs:
@@ -19,8 +22,4 @@ jobs:
19
22
- run: npm ci
20
23
- run: npm run build
21
24
- run: npm run audit-consumers --silent | tee issue-body.md
- - uses: peter-evans/create-issue-from-file@v5
- with:
- title: Automated report on web-features consumers
25
- content-filepath: issue-body.md
26
- labels: generated
+ - run: gh issue create --title "web-features consumers report for $(date -I)" --label generated --body-file issue-body.md
0 commit comments