Skip to content

Commit

Permalink
run the same CI configurations for pull requests from forks as for pu…
Browse files Browse the repository at this point in the history
…ll requests from main repo
  • Loading branch information
p committed Jun 6, 2024
1 parent ae63482 commit 2f80273
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- "**"
pull_request:
# The branches below must be a subset of the branches above
branches: [ '**' ]
workflow_dispatch: {}
schedule:
- cron: '00 04 * * 2-6'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-head.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Test unstable
on: [push]
on: [push, pull_request]
jobs:
test-head:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- "**"
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches: [ "**" ]
jobs:
test-macos:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-yjit.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Test YJIT
on: [push]
on: [push, pull_request]
jobs:
test-yjit:
strategy:
Expand Down

0 comments on commit 2f80273

Please sign in to comment.