Skip to content

Commit

Permalink
Run the triage workflow on primary repo only (#1642)
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Sim <ivan.sim@kasten.io>
  • Loading branch information
ihcsim authored Sep 21, 2022
1 parent 063138c commit 5c8da90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/triage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- reopened
jobs:
issues:
if: github.event_name == 'issues'
if: github.repository == 'kanisterio/kanister' && github.event_name == 'issues'
permissions:
issues: write
runs-on: ubuntu-latest
Expand All @@ -34,7 +34,7 @@ jobs:
project: Kanister
column: To Be Triaged
pull-requests:
if: github.event_name == 'pull_request'
if: github.repository == 'kanisterio/kanister' && github.event_name == 'pull_request'
permissions:
pull-requests: write
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5c8da90

Please sign in to comment.