diff --git a/.gitea/workflows/diff-output.yaml b/.gitea/workflows/diff-output.yaml index 7bf4cf3..24e12ab 100644 --- a/.gitea/workflows/diff-output.yaml +++ b/.gitea/workflows/diff-output.yaml @@ -12,12 +12,15 @@ on: ref: required: true type: string + secrets: + token: + required: true jobs: diff: runs-on: ubuntu-22.04 outputs: - is_changed: ${{ steps.changed-files-specific.any_changed }} + is_changed: ${{ steps.changed-files-specific.any_changed == 'true' }} steps: - name: Echo test @@ -29,6 +32,7 @@ jobs: repository: ${{ inputs.repository }} ref: ${{ inputs.ref }} token: ${{ secrets.token }} + - name: Get changed files in the doorman-homeassistant folder id: changed-files-specific uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47