Skip to content

Commit 08cfa98

Browse files
authored
Merge pull request #10238 from mcanouil/fix/issue10235
ci: schedule trigger if on upstream repository
2 parents f94063c + 238d3d7 commit 08cfa98

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-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:

news/changelog-1.6.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ All changes included in 1.6:
2626
## Other Fixes and Improvements
2727

2828
- ([#10162](https://github.com/quarto-dev/quarto-cli/issues/10162)): Use Edge on `macOS` as a Chromium browser when available.
29+
- ([#10235](https://github.com/quarto-dev/quarto-cli/issues/10235)): Configure the CI schedule trigger to activate exclusively for the upstream repository.

0 commit comments

Comments
 (0)