wut
Infrastructure / Check infrastructure definitions (pull_request) Successful in 1m24s Details

This commit is contained in:
Gleb Koval 2023-08-29 02:51:52 +01:00
parent 01d6f01d56
commit b75d285263
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
1 changed files with 3 additions and 11 deletions

View File

@ -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