Skip to content

Commit b48ed06

Browse files
committed
Attempt to allow test job to run on pull request from external branch
Refs: https://github.com/plone/volto/pull/4629/files
1 parent 5857ed0 commit b48ed06

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: Test Plone 6 documentation
22

3-
on:
4-
push:
5-
branches-ignore:
6-
- "master"
7-
3+
on: [push, pull_request]
84
jobs:
95
test:
6+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
107
runs-on: ubuntu-latest
118
steps:
129
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)