Skip to content

Commit

Permalink
fix pull request event trigger (#59)
Browse files Browse the repository at this point in the history
`pull_request` was always its own event type, never under `push`.

https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
  • Loading branch information
zakame authored Jun 17, 2024
1 parent e957246 commit 0dec46f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gpg_signatures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- 'lib/CPAN/Audit/DB.pm'
- 'briandfoy-gpg-key-selfie.jpeg'
- '**.gpg'
pull_request:
pull_request:

jobs:
gpg:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
- 'Changes'
- 'LICENSE'
- 'README.pod'
pull_request:
pull_request:

jobs:
perl:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
- 'Changes'
- 'LICENSE'
- 'README.pod'
pull_request:
pull_request:

jobs:
perl:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
- 'Changes'
- 'LICENSE'
- 'README.pod'
pull_request:
pull_request:

jobs:
perl:
Expand Down

0 comments on commit 0dec46f

Please sign in to comment.