-
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (25 loc) · 735 Bytes
/
Copy pathscheduled.yml
File metadata and controls
28 lines (25 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: scheduled-dep-check
on:
schedule:
- cron: "15 6 * * *" # daily 06:15 UTC
workflow_dispatch: {}
concurrency:
group: scheduled-dep-check
cancel-in-progress: false
jobs:
checks:
uses: ./.github/workflows/_checks.yml
report-failure:
needs: checks
if: failure() && github.event_name == 'schedule'
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- uses: actions/checkout@v6
- name: Open or update tracking issue
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
run: bash .github/scripts/report-scheduled-failure.sh