Skip to content

Commit acdf018

Browse files
authored
Change when some github workflows run (#1583)
Try to run these more frequently/often.
1 parent cebb7b6 commit acdf018

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/Documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Documentation
44

55
# Controls when the action will run. Workflow runs when manually triggered using the UI
66
# or API.
7-
on: [push]
7+
on: [push, pull_request]
88

99
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1010
jobs:

.github/workflows/Lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Code Lint
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
Linters:

.github/workflows/UnitTests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Tests
22

3-
on:
4-
push:
5-
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
3+
on: [push, pull_request]
84

95
jobs:
106
Unit_Tests:

0 commit comments

Comments
 (0)