Skip to content

Commit fce9128

Browse files
committed
Update PRs to only run when code updated.
The PRs could be affected by editing of the text, etc.
1 parent 6a7cc43 commit fce9128

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ name: Test all binaries
1212
# Controls when the action will run. Triggers the workflow on:
1313
# * push on any branch.
1414
# * tag creation for tags beginning with a 'v'
15+
# * pull requests
1516
on:
1617
push:
1718
branches: ["master"]
@@ -22,8 +23,9 @@ on:
2223
- aif32/**
2324
- aif64/**
2425
- tests/**
25-
# Pull request events happen on pull request state transitions, so we probably don't want this here.
26+
2627
pull_request:
28+
types: [opened, reopened, synchronize]
2729
branches: ["*"]
2830

2931
concurrency:

0 commit comments

Comments
 (0)