Skip to content

Commit 6cb08e0

Browse files
committed
ci: schedule trigger if on upstream repository
Fixes #10235
1 parent b7150a0 commit 6cb08e0

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/performance-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
test-bundle:
1515
runs-on: ubuntu-latest
16-
16+
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
1717
steps:
1818
- name: Checkout Repo
1919
uses: actions/checkout@v4

.github/workflows/stale-needs-repro.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permissions:
1010
jobs:
1111
stale:
1212
runs-on: ubuntu-latest
13+
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
1314
steps:
1415
- uses: actions/stale@v9
1516
with:

.github/workflows/test-bundle.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
test-bundle:
1515
runs-on: ubuntu-latest
16-
16+
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
1717
steps:
1818
- name: Checkout Repo
1919
uses: actions/checkout@v4
@@ -43,4 +43,3 @@ jobs:
4343
run: |
4444
pushd package/src
4545
./quarto-bld validate-bundle
46-

.github/workflows/test-ff-matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ concurrency:
2626
jobs:
2727
run-smokes:
2828
name: Run feature-format matrix on (${{ matrix.os }})
29+
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
2930
strategy:
3031
fail-fast: false
3132
matrix:

.github/workflows/test-smokes.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ on:
4141
jobs:
4242
run-smokes:
4343
name: Run smoke (${{ matrix.os }})${{ matrix.time-test && ' with timed file' || ''}}${{ inputs.extra-r-packages && ' - with some extra R packages'|| ''}}
44+
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
4445
strategy:
4546
fail-fast: false
4647
matrix:

0 commit comments

Comments
 (0)