Skip to content

Commit 292e29a

Browse files
authored
Merge branch 'main' into smockle/update-org-references
2 parents 1a1174b + 2db2c21 commit 292e29a

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,27 @@ name: Test
22
on:
33
pull_request:
44
types:
5+
- opened
6+
- reopened
57
- synchronize
6-
push:
7-
branches:
8-
- main
8+
- ready_for_review
99
workflow_dispatch:
1010

1111
permissions:
1212
contents: write
1313
issues: write
1414
pull-requests: write
1515

16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: false # Allow previous workflows’ clean-up steps to complete
19+
1620
jobs:
1721
test:
1822
name: Test
1923
runs-on: ubuntu-latest
24+
# Run if triggered manually, or for a non-draft PR
25+
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
2026
strategy:
2127
matrix:
2228
site: [ "sites/site-with-errors" ]

0 commit comments

Comments
 (0)