Skip to content

Commit

Permalink
ci: Skip workflow tests on community PRs (#12501)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored Jan 8, 2025
1 parent c64cd51 commit bb6cd79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
build:
name: Install & Build
runs-on: ubuntu-latest
if: github.event_name != 'pull_request_review' || startsWith(github.event.pull_request.base.ref, 'release/')
if: |
(github.event_name != 'pull_request_review' || startsWith(github.event.pull_request.base.ref, 'release/')) &&
!contains(github.event.pull_request.labels.*.name, 'community')
steps:
- uses: actions/[email protected]
- run: corepack enable
Expand Down

0 comments on commit bb6cd79

Please sign in to comment.