Skip to content

Commit

Permalink
Fix triggering github actions on pull requests (#193)
Browse files Browse the repository at this point in the history
Previously, only pull requests from a branch of the repository were
triggering github action workflows.
  • Loading branch information
otargowski authored Feb 19, 2024
1 parent ceb8f25 commit abe6a43
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Arch.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pytest-arch
run-name: Run pytest on Arch Linux
on: [push]
on: [push, pull_request]
jobs:
pytest:
runs-on: self-hosted
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/GithubRunner.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pytest-github-runner
run-name: Run tests for GitHub Runner
on: [push]
on: [push, pull_request]
jobs:
pytest:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Ubuntu.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pytest-ubuntu
run-name: Run pytest on Ubuntu
on: [push]
on: [push, pull_request]
jobs:
pytest:
runs-on: self-hosted
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macOS.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pytest-macos
run-name: Run pytest on macOS
on: [push]
on: [push, pull_request]

jobs:
pytest:
Expand Down

0 comments on commit abe6a43

Please sign in to comment.