open-vault/.github/workflows/verify_changes.yml
hc-github-team-secure-vault-core 94dc0d67e0
backport of commit 437a7ab9340c9d5e6638570ac37a271e5c1342e5 (#22019)
Co-authored-by: Hamid Ghaf <83242695+hghaf099@users.noreply.github.com>
2023-07-21 17:34:53 +00:00

31 lines
1.2 KiB
YAML

name: verify_changes
on:
workflow_call:
outputs:
is_docs_change:
description: "determines if the changes contains docs"
value: ${{ jobs.verify-doc-ui-changes.outputs.is_docs_change }}
is_ui_change:
description: "determines if the changes contain ui"
value: ${{ jobs.verify-doc-ui-changes.outputs.is_ui_change }}
jobs:
# verify-doc-ui-changes determines if the changes are only for docs (website) and/or ui
verify-doc-ui-changes:
runs-on: ubuntu-latest
outputs:
is_docs_change: ${{ steps.get-changeddir.outputs.is_docs_change }}
is_ui_change: ${{ steps.get-changeddir.outputs.is_ui_change }}
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0 # Use fetch depth 0 for comparing changes to base branch
- name: Get changed directories
id: get-changeddir
env:
TYPE: ${{ github.event_name }}
REF_NAME: ${{ github.ref_name }}
BASE: ${{ github.base_ref }}
run: ./.github/scripts/verify_changes.sh ${{ env.TYPE }} ${{ env.REF_NAME }} ${{ env.BASE }}