Skip to content

Commit d7d56a1

Browse files
committed
fix ci
Signed-off-by: Jack Luar <[email protected]>
1 parent 84754d8 commit d7d56a1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/github-actions-yaml-test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ jobs:
1616
uses: actions/checkout@v4
1717
with:
1818
submodules: 'recursive'
19-
- name: Run generate-variable-docs.py
19+
- name: Run generate-variables-docs.py
2020
run: |
21-
python3 flow/scripts/generate-variable-docs.py
21+
python3 flow/scripts/generate-variables-docs.py
2222
- name: Run yamlfix check
2323
run: |
2424
yamlfix -c yamlfix.toml flow/scripts/variables.yaml --check
2525
2626
docs-pr-update:
2727
name: 'Create PR to update ORFS FlowVariables.md and variables.yaml'
28-
if: "github.event_name == 'push'"
28+
if: "github.event_name == 'pull_request' || github.event_name == 'push'"
2929
needs:
3030
- docs-test-job
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout repository
3434
uses: actions/checkout@v4
35-
- name: Run generate-variable-docs.py
35+
- name: Run generate-variables-docs.py
3636
run: |
37-
python3 flow/scripts/generate-variable-docs.py
37+
python3 flow/scripts/generate-variables-docs.py
3838
- name: Run yamlfix
3939
run: |
4040
pip install yamlfix==1.17.0

0 commit comments

Comments
 (0)