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 }}
|
2024-05-07 13:26:59 +00:00
|
|
|
ci-quarkus:
|
2024-05-31 10:23:04 +00:00
|
|
|
description: Should "ci.yml" execute (Quarkus)
|
2024-05-07 13:26:59 +00:00
|
|
|
value: ${{ steps.changes.outputs.ci-quarkus }}
|
2023-08-03 08:40:25 +00:00
|
|
|
ci-store:
|
2024-05-31 10:23:04 +00:00
|
|
|
description: Should "ci.yml" execute (Store)
|
2023-08-03 08:40:25 +00:00
|
|
|
value: ${{ steps.changes.outputs.ci-store }}
|
|
|
|
ci-sssd:
|
2024-05-31 10:23:04 +00:00
|
|
|
description: Should "ci.yml" execute (SSSD)
|
2023-08-03 08:40:25 +00:00
|
|
|
value: ${{ steps.changes.outputs.ci-sssd }}
|
2024-05-31 10:23:04 +00:00
|
|
|
ci-webauthn:
|
|
|
|
description: Should "ci.yml" execute (WebAuthn)
|
|
|
|
value: ${{ steps.changes.outputs.ci-webauthn }}
|
2024-07-19 10:11:17 +00:00
|
|
|
ci-test-poc:
|
|
|
|
description: Should "ci.yml" execute (Test PoC)
|
|
|
|
value: ${{ steps.changes.outputs.ci-test-poc }}
|
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 }}
|