Skip to content

Commit 84582e4

Browse files
authored
[#95] Fixed Github Actions not automatically triggering on pull requests (#96)
- Fix CI/CD not properly working on pull requests - Updated all pull_request actions to now have proper syntax - Fixed accidental re-rollback on nightly versioning
1 parent a5b932a commit 84582e4

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/scan-code.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ on:
22
push:
33
workflow_dispatch:
44
pull_request:
5+
types:
6+
[opened, reopened, synchronize, edited]
57
schedule:
68
- cron: "0 ? * * 1"
79

.github/workflows/test-macos-latest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ on:
22
push:
33
workflow_dispatch:
44
pull_request:
5+
types:
6+
[opened, reopened, synchronize, edited]
57
schedule:
68
- cron: "0 ? * * 1"
79

.github/workflows/test-ubuntu-latest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ on:
22
push:
33
workflow_dispatch:
44
pull_request:
5+
types:
6+
[opened, reopened, synchronize, edited]
57
schedule:
68
- cron: "0 ? * * 1"
79

.github/workflows/test-windows-latest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ on:
22
push:
33
workflow_dispatch:
44
pull_request:
5+
types:
6+
[opened, reopened, synchronize, edited]
57
schedule:
68
- cron: "0 ? * * 1"
79

0 commit comments

Comments
 (0)