Skip to content

Commit f86883f

Browse files
authored
Merge pull request #5572 from plotly/add-synchronize-trigger
Add `pull_request` `synchronize` trigger so workflows run when new commits are pushed to PR
2 parents b4afdb7 + 0bb8738 commit f86883f

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.github/workflows/build-doc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- doc-prod
77
pull_request:
8+
types: [opened, reopened, synchronize]
89

910
jobs:
1011
build-doc:

.github/workflows/build-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ name: Build
22

33
on:
44
push:
5+
branches:
6+
- main
57
pull_request:
6-
types: [opened, reopened]
8+
types: [opened, reopened, synchronize]
79

810
jobs:
911
plotlyjs-dev-build:

.github/workflows/check-formatting.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ name: Check Python code formatting
22

33
on:
44
push:
5+
branches:
6+
- main
57
pull_request:
6-
types: [opened, reopened]
8+
types: [opened, reopened, synchronize]
79

810
jobs:
911
check-code-formatting:

.github/workflows/run-percy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ name: Run Percy
22

33
on:
44
push:
5+
branches:
6+
- main
57
pull_request:
6-
types: [opened, reopened]
8+
types: [opened, reopened, synchronize]
79
workflow_dispatch:
810

911
jobs:

.github/workflows/run-pytest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ name: Test
22

33
on:
44
push:
5+
branches:
6+
- main
57
pull_request:
6-
types: [opened, reopened]
8+
types: [opened, reopened, synchronize]
79

810
jobs:
911
test-core:

0 commit comments

Comments
 (0)