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 e2812ed commit 5e853b3Copy full SHA for 5e853b3
.github/workflows/test.yml
@@ -2,21 +2,27 @@ name: Test
2
on:
3
pull_request:
4
types:
5
+ - opened
6
+ - reopened
7
- synchronize
- push:
- branches:
8
- - main
+ - ready_for_review
9
workflow_dispatch:
10
11
permissions:
12
contents: write
13
issues: write
14
pull-requests: write
15
16
+concurrency:
17
+ group: ${{ github.workflow }}-${{ github.ref }}
18
+ cancel-in-progress: false # Allow previous workflows’ clean-up steps to complete
19
+
20
jobs:
21
test:
22
name: Test
23
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 }}
26
strategy:
27
matrix:
28
site: [ "sites/site-with-errors" ]
0 commit comments