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 18fda23 commit dc67cf6Copy full SHA for dc67cf6
.github/actions/ansible_validate_changelog/action.yml
@@ -30,10 +30,19 @@ runs:
30
pip install -U pyyaml
31
shell: bash
32
33
- - name: Validate changelog
+ - name: Validate changelog using custom paths
34
run: >-
35
python3 ${{ github.action_path }}/validate_changelog.py
36
--ref ${{ inputs.base_ref }}
37
--custom-paths ${{ inputs.custom_paths }}
38
39
working-directory: ${{ inputs.path }}
40
+ if: inputs.custom_paths != ''
41
+
42
+ - name: Validate changelog
43
+ run: >-
44
+ python3 ${{ github.action_path }}/validate_changelog.py
45
+ --ref ${{ inputs.base_ref }}
46
+ shell: bash
47
+ working-directory: ${{ inputs.path }}
48
+ if: inputs.custom_paths == ''
0 commit comments