2023-01-30 07:07:10 +00:00
|
|
|
name: Changed Files
|
|
|
|
description: Checks changes against target branch
|
|
|
|
|
2023-07-25 13:43:53 +00:00
|
|
|
inputs:
|
|
|
|
token:
|
|
|
|
description: GitHub Token
|
|
|
|
required: true
|
|
|
|
|
2023-01-30 07:07:10 +00:00
|
|
|
outputs:
|
|
|
|
ci:
|
|
|
|
description: Should "ci.yml" execute
|
|
|
|
value: ${{ steps.changes.outputs.ci }}
|
2023-02-03 10:45:11 +00:00
|
|
|
operator:
|
|
|
|
description: Should "operator-ci.yml" execute
|
|
|
|
value: ${{ steps.changes.outputs.operator }}
|
|
|
|
js:
|
|
|
|
description: Should "js-ci.yml" execute
|
|
|
|
value: ${{ steps.changes.outputs.js }}
|
2023-01-30 07:07:10 +00:00
|
|
|
codeql-java:
|
|
|
|
description: Should "codeql-analysis.yml / java" execute
|
|
|
|
value: ${{ steps.changes.outputs.codeql-java }}
|
|
|
|
codeql-themes:
|
|
|
|
description: Should "codeql-analysis.yml / themes" execute
|
|
|
|
value: ${{ steps.changes.outputs.codeql-themes }}
|
2023-03-28 10:35:27 +00:00
|
|
|
guides:
|
|
|
|
description: Should "guides.yml" execute
|
|
|
|
value: ${{ steps.changes.outputs.guides }}
|
|
|
|
documentation:
|
|
|
|
description: Should "documentation.yml" execute
|
|
|
|
value: ${{ steps.changes.outputs.documentation }}
|
2023-05-10 13:25:12 +00:00
|
|
|
sssd:
|
|
|
|
description: Should "sssd.yml" execute
|
|
|
|
value: ${{ steps.changes.outputs.sssd }}
|
2023-01-30 07:07:10 +00:00
|
|
|
|
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
|
|
|
- id: changes
|
|
|
|
name: Find changes
|
|
|
|
shell: bash
|
2023-07-25 13:43:53 +00:00
|
|
|
run: .github/actions/conditional/conditional.sh ${{ github.repository }} ${{ github.ref }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ inputs.token }}
|