Skip to content

Commit

Permalink
Allow disabling the scheduled run
Browse files Browse the repository at this point in the history
As it happens there is an issue with httpx right now
  • Loading branch information
Earlopain committed Nov 2, 2024
1 parent 0386c66 commit 6ea22e4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ permissions:
jobs:
tests:
runs-on: ubuntu-latest
# Allow disabling scheduled runs when an issue has been found. Also stops it from running on forks.
# Configure at https://github.com/Earlopain/FoxTrove/settings/variables/actions
if: (github.event_name == 'schedule' && vars.ALLOW_SCHEDULED_RUN == 'true') || github.event_name != 'schedule'

env:
BLEEDING_EDGE: ${{ (inputs.bleeding_edge == true || github.event_name == 'schedule') && 'true' || 'false' }}
Expand Down

0 comments on commit 6ea22e4

Please sign in to comment.