We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26f811 commit 84754d8Copy full SHA for 84754d8
.github/workflows/github-actions-yaml-test.yml
@@ -2,10 +2,12 @@ name: ORFS variables.yaml tester and linter
2
3
on:
4
push:
5
+ pull_request:
6
7
jobs:
8
docs-test-job:
9
name: 'Tests for variables.yaml'
10
+ if: "github.event_name == 'pull_request' || github.event_name == 'push'"
11
runs-on: ubuntu-latest
12
container:
13
image: openroad/ubuntu-cpp20
@@ -23,6 +25,7 @@ jobs:
23
25
24
26
docs-pr-update:
27
name: 'Create PR to update ORFS FlowVariables.md and variables.yaml'
28
+ if: "github.event_name == 'push'"
29
needs:
30
- docs-test-job
31
0 commit comments