We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f91b51d commit 3215abdCopy full SHA for 3215abd
.github/workflows/build_and_test.yml
@@ -0,0 +1,19 @@
1
+name: Build and Test
2
+
3
+on:
4
+ issue_comment:
5
+ types:
6
+ - created
7
+ pull_request_target:
8
+ types: [opened, synchronize, reopened]
9
+ paths-ignore:
10
+ - 'cicd*.groovy'
11
+ - '**/LICENSE'
12
+ - 'README.md'
13
+ workflow_dispatch:
14
15
+jobs:
16
+ build-and-test:
17
+ if: (github.event.issue.pull_request && contains(github.event.comment.body, '/run tests')) || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request_target'
18
+ uses: ZOSOpenTools/meta/.github/workflows/build_and_test.yml@main
19
+ secrets: inherit
0 commit comments