infra-setup #2

Merged
cyclane merged 26 commits from :infra-setup into main 2023-09-02 17:54:04 +00:00
1 changed files with 3 additions and 11 deletions
Showing only changes of commit b75d285263 - Show all commits

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