We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb10d9 commit e43b6b7Copy full SHA for e43b6b7
.github/workflows/create-backport-trackers.yml
@@ -35,7 +35,8 @@ on:
35
jobs:
36
create-backports:
37
runs-on: ubuntu-latest
38
- if: github.ref == 'refs/heads/main'
+ # Backport checks need to be run ONLY on the main branch on ceph/ceph (not forks)
39
+ if: github.ref == 'refs/heads/main' && github.repository == 'ceph/ceph'
40
steps:
41
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42
with:
.github/workflows/stale.yml
@@ -8,6 +8,8 @@ on:
8
9
stale:
10
11
+ # Stale PR checks need not run on forks
12
+ if: github.repository == 'ceph/ceph'
13
14
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
15
0 commit comments