Skip to content

Commit 0dec46f

Browse files
authored
fix pull request event trigger (#59)
`pull_request` was always its own event type, never under `push`. https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
1 parent e957246 commit 0dec46f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/gpg_signatures.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- 'lib/CPAN/Audit/DB.pm'
1010
- 'briandfoy-gpg-key-selfie.jpeg'
1111
- '**.gpg'
12-
pull_request:
12+
pull_request:
1313

1414
jobs:
1515
gpg:

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
- 'Changes'
3838
- 'LICENSE'
3939
- 'README.pod'
40-
pull_request:
40+
pull_request:
4141

4242
jobs:
4343
perl:

.github/workflows/macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
- 'Changes'
3838
- 'LICENSE'
3939
- 'README.pod'
40-
pull_request:
40+
pull_request:
4141

4242
jobs:
4343
perl:

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
- 'Changes'
3838
- 'LICENSE'
3939
- 'README.pod'
40-
pull_request:
40+
pull_request:
4141

4242
jobs:
4343
perl:

0 commit comments

Comments
 (0)