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 8f68ce9 commit 79acc4fCopy full SHA for 79acc4f
.github/workflows/docs-cicd-1-pull-request.yaml
@@ -32,16 +32,19 @@ jobs:
32
- 'docs/**'
33
src:
34
- 'src/**'
35
+ workflows:
36
+ - '.github/workflows/docs-*'
37
outputs:
38
docs: ${{ steps.changes.outputs.docs }}
39
src: ${{ steps.changes.outputs.src }}
40
+ workflows: ${{ steps.changes.outputs.workflows }}
41
42
metadata:
43
name: "Set CI/CD metadata"
44
runs-on: ubuntu-latest
45
timeout-minutes: 1
46
needs: changes
- if: ${{ needs.changes.outputs.docs == 'true' || needs.changes.outputs.src == 'true' }}
47
+ if: ${{ needs.changes.outputs.docs == 'true' || needs.changes.outputs.src == 'true' || needs.changes.outputs.workflows == 'true'}}
48
49
50
build_datetime_london: ${{ steps.variables.outputs.build_datetime_london }}
0 commit comments