diff --git a/.github/workflows/infra.yaml b/.github/workflows/infra.yaml index fa937da..71aa20a 100644 --- a/.github/workflows/infra.yaml +++ b/.github/workflows/infra.yaml @@ -20,22 +20,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 2 - name: Fetch PR base if: github.event.pull_request run: | git fetch --no-tags --progress --no-recurse-submodules --depth=1 origin ${{ github.event.pull_request.base.sha }} - - - name: Test - if: github.event.forkee - run: echo dot! - - - run: | - echo !${{ github.event.pull_request.base.repo }} !${{ github.event.pull_request.base.sha }} - echo !${{ github.event.pusher }} - echo !${{ github.event.forkee }} - git remote get-url origin - git branch -l | cat - name: Setup Python uses: actions/setup-python@v4 @@ -56,6 +47,7 @@ jobs: - name: Check modified playbooks run: | + echo "Got changed files: '${{ steps.changed-playbooks.outputs.all_changed_files }}'" for file in ${{ steps.changed-playbooks.outputs.all_changed_files }}; do ansible --inventory ./inventory --check "$file" done