Skip to content

Commit

Permalink
Merge pull request #1 from mfisher87/disable-cron-workflows-on-forks
Browse files Browse the repository at this point in the history
Disable cron workflows for forked repositories
  • Loading branch information
mfisher87 authored Jul 6, 2024
2 parents e8c3cbf + d298d19 commit ce2b459
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/performance-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
jobs:
test-bundle:
runs-on: ubuntu-latest
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')

steps:
- name: Checkout Repo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stale-needs-repro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ permissions:
jobs:
stale:
runs-on: ubuntu-latest
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
steps:
- uses: actions/stale@v9
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-ff-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ concurrency:
jobs:
run-smokes:
name: Run feature-format matrix on (${{ matrix.os }})
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-smokes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ on:
jobs:
run-smokes:
name: Run smoke (${{ matrix.os }})${{ matrix.time-test && ' with timed file' || ''}}${{ inputs.extra-r-packages && ' - with some extra R packages'|| ''}}
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-test-timing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ name: Update timing test file
jobs:
run-timed-tests:
name: Running Tests to produce timed file
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
uses: ./.github/workflows/test-smokes.yml
with:
buckets: ""
Expand Down

0 comments on commit ce2b459

Please sign in to comment.