Skip to content

Commit 85042a8

Browse files
authored
Merge pull request #424 from phracek/support_test_all
Add possibility to test all
2 parents a71eeba + f5671fc commit 85042a8

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/centos7-openshift-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
if: |
1313
github.event.issue.pull_request
14-
&& contains(github.event.comment.body, '[test-openshift]')
14+
&& (contains(github.event.comment.body, '[test-openshift]') || contains(github.event.comment.body, '[test-all]'))
1515
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
1616
outputs:
1717
REQ_ID: ${{steps.sched_test.outputs.REQ_ID}}

.github/workflows/centos7-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
if: |
1313
github.event.issue.pull_request
14-
&& contains(github.event.comment.body, '[test]')
14+
&& (contains(github.event.comment.body, '[test]') || contains(github.event.comment.body, '[test-all]'))
1515
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
1616
outputs:
1717
REQ_ID: ${{steps.sched_test.outputs.REQ_ID}}

.github/workflows/fedora-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
if: |
1313
github.event.issue.pull_request
14-
&& contains(github.event.comment.body, '[test]')
14+
&& (contains(github.event.comment.body, '[test]') || contains(github.event.comment.body, '[test-all]'))
1515
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
1616
outputs:
1717
REQ_ID: ${{steps.sched_test.outputs.REQ_ID}}

.github/workflows/rhel7-openshift-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
if: |
1313
github.event.issue.pull_request
14-
&& contains(github.event.comment.body, '[test-openshift]')
14+
&& (contains(github.event.comment.body, '[test-openshift]') || contains(github.event.comment.body, '[test-all]'))
1515
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
1616
outputs:
1717
REQ_ID: ${{steps.sched_test.outputs.REQ_ID}}

.github/workflows/rhel7-openshift4-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
if: |
1313
github.event.issue.pull_request
14-
&& contains(github.event.comment.body, '[test-openshift-4]')
14+
&& (contains(github.event.comment.body, '[test-openshift-4]') || contains(github.event.comment.body, '[test-all]'))
1515
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
1616
outputs:
1717
REQ_ID: ${{steps.sched_test.outputs.REQ_ID}}

.github/workflows/rhel7-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
if: |
1313
github.event.issue.pull_request
14-
&& contains(github.event.comment.body, '[test]')
14+
&& (contains(github.event.comment.body, '[test]') || contains(github.event.comment.body, '[test-all]'))
1515
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
1616
outputs:
1717
REQ_ID: ${{steps.sched_test.outputs.REQ_ID}}

.github/workflows/rhel8-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
if: |
1313
github.event.issue.pull_request
14-
&& contains(github.event.comment.body, '[test]')
14+
&& (contains(github.event.comment.body, '[test]') || contains(github.event.comment.body, '[test-all]'))
1515
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
1616
outputs:
1717
REQ_ID: ${{steps.sched_test.outputs.REQ_ID}}

0 commit comments

Comments
 (0)