Skip to content

Commit 790e1b8

Browse files
committed
add pull_request synchronize trigger so workflows run when new commits are pushed to PR
1 parent b4afdb7 commit 790e1b8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build
33
on:
44
push:
55
pull_request:
6-
types: [opened, reopened]
6+
types: [opened, reopened, synchronize]
77

88
jobs:
99
plotlyjs-dev-build:

.github/workflows/check-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check Python code formatting
33
on:
44
push:
55
pull_request:
6-
types: [opened, reopened]
6+
types: [opened, reopened, synchronize]
77

88
jobs:
99
check-code-formatting:

.github/workflows/run-percy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Run Percy
33
on:
44
push:
55
pull_request:
6-
types: [opened, reopened]
6+
types: [opened, reopened, synchronize]
77
workflow_dispatch:
88

99
jobs:

.github/workflows/run-pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on:
44
push:
55
pull_request:
6-
types: [opened, reopened]
6+
types: [opened, reopened, synchronize]
77

88
jobs:
99
test-core:

0 commit comments

Comments
 (0)