Skip to content

Commit

Permalink
Update validate_secrets.yml
Browse files Browse the repository at this point in the history
Validate_secrets.yml: run every 5 minutes on schedule

Stress-testing the Validate Secrets workflow with the 'Sync clock' workaround mentioned in https://github.com/actions/runner issue 2996 for errors like this:

'Authentication credentials are missing or invalid. - Provide a properly configured and signed bearer token, and make sure that it has not expired.'
  • Loading branch information
bjornoleh authored Nov 30, 2023
1 parent ae3dd0e commit 9205084
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/validate_secrets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: 1. Validate Secrets
run-name: Validate Secrets (${{ github.ref_name }})
on: [workflow_call, workflow_dispatch]
on:
workflow_call:
workflow_dispatch:
schedule:
- cron: '*/5 * * * *' # Runs every 5 minutes

jobs:
validate-access-token:
Expand Down

0 comments on commit 9205084

Please sign in to comment.