chore: rename jobs for better readability in Forgejo

This commit is contained in:
Tommy 2024-11-11 20:11:38 +01:00
parent 41be9723b7
commit cd6d0ad0d8
Signed by: tommy
SSH key fingerprint: SHA256:1LWgQT3QPHIT29plS8jjXc3S1FcE/4oGvsx3Efxs6Uc

View file

@ -1,4 +1,4 @@
name: Chart Validation
name: Validate Chart
on:
pull_request:
paths:
@ -34,7 +34,7 @@ jobs:
changesExist: ${{ env.changesExist }}
validate-linting:
name: "Validate: Linting"
name: "Lint"
needs: charts-changed
if: needs.charts-changed.outputs.changesExist == 'true'
runs-on: flakes-action
@ -43,9 +43,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Linting Changed Repositories
run: |
- run: |
repos='${{ needs.charts-changed.outputs.reposChanged }}'
for repo in $(echo $repos | jq -r '.[]'); do
echo "Linting $repo"
@ -53,7 +51,7 @@ jobs:
done
validate-audit:
name: "Validate: Audit"
name: "Audit"
needs: charts-changed
if: needs.charts-changed.outputs.changesExist == 'true'
runs-on: flakes-action
@ -62,8 +60,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Auditing changed charts
run: |
- run: |
repos='${{ needs.charts-changed.outputs.reposChanged }}'
for repo in $(echo $repos | jq -r '.[]'); do
echo "Auditing $repo"
@ -75,7 +72,7 @@ jobs:
done
validate-api:
name: "Validate: Outdated APIs"
name: "Outdated APIs"
needs: charts-changed
if: needs.charts-changed.outputs.changesExist == 'true'
runs-on: flakes-action
@ -84,8 +81,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checking changed charts for outdated APIs
run: |
- run: |
repos='${{ needs.charts-changed.outputs.reposChanged }}'
for repo in $(echo $repos | jq -r '.[]'); do
echo "Checking deprecated apiVersions for $repo"