chore: rename jobs for better readability in Forgejo
This commit is contained in:
parent
b496232575
commit
bd09ed21d5
1 changed files with 7 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
||||||
name: Chart Validation
|
name: Validate Chart
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
|
@ -34,7 +34,7 @@ jobs:
|
||||||
changesExist: ${{ env.changesExist }}
|
changesExist: ${{ env.changesExist }}
|
||||||
|
|
||||||
validate-linting:
|
validate-linting:
|
||||||
name: "Validate: Linting"
|
name: "Lint"
|
||||||
needs: charts-changed
|
needs: charts-changed
|
||||||
if: needs.charts-changed.outputs.changesExist == 'true'
|
if: needs.charts-changed.outputs.changesExist == 'true'
|
||||||
runs-on: flakes-action
|
runs-on: flakes-action
|
||||||
|
@ -43,9 +43,7 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
- run: |
|
||||||
- name: Linting Changed Repositories
|
|
||||||
run: |
|
|
||||||
repos='${{ needs.charts-changed.outputs.reposChanged }}'
|
repos='${{ needs.charts-changed.outputs.reposChanged }}'
|
||||||
for repo in $(echo $repos | jq -r '.[]'); do
|
for repo in $(echo $repos | jq -r '.[]'); do
|
||||||
echo "Linting $repo"
|
echo "Linting $repo"
|
||||||
|
@ -53,7 +51,7 @@ jobs:
|
||||||
done
|
done
|
||||||
|
|
||||||
validate-audit:
|
validate-audit:
|
||||||
name: "Validate: Audit"
|
name: "Audit"
|
||||||
needs: charts-changed
|
needs: charts-changed
|
||||||
if: needs.charts-changed.outputs.changesExist == 'true'
|
if: needs.charts-changed.outputs.changesExist == 'true'
|
||||||
runs-on: flakes-action
|
runs-on: flakes-action
|
||||||
|
@ -62,8 +60,7 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Auditing changed charts
|
- run: |
|
||||||
run: |
|
|
||||||
repos='${{ needs.charts-changed.outputs.reposChanged }}'
|
repos='${{ needs.charts-changed.outputs.reposChanged }}'
|
||||||
for repo in $(echo $repos | jq -r '.[]'); do
|
for repo in $(echo $repos | jq -r '.[]'); do
|
||||||
echo "Auditing $repo"
|
echo "Auditing $repo"
|
||||||
|
@ -75,7 +72,7 @@ jobs:
|
||||||
done
|
done
|
||||||
|
|
||||||
validate-api:
|
validate-api:
|
||||||
name: "Validate: Outdated APIs"
|
name: "Outdated APIs"
|
||||||
needs: charts-changed
|
needs: charts-changed
|
||||||
if: needs.charts-changed.outputs.changesExist == 'true'
|
if: needs.charts-changed.outputs.changesExist == 'true'
|
||||||
runs-on: flakes-action
|
runs-on: flakes-action
|
||||||
|
@ -84,8 +81,7 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Checking changed charts for outdated APIs
|
- run: |
|
||||||
run: |
|
|
||||||
repos='${{ needs.charts-changed.outputs.reposChanged }}'
|
repos='${{ needs.charts-changed.outputs.reposChanged }}'
|
||||||
for repo in $(echo $repos | jq -r '.[]'); do
|
for repo in $(echo $repos | jq -r '.[]'); do
|
||||||
echo "Checking deprecated apiVersions for $repo"
|
echo "Checking deprecated apiVersions for $repo"
|
||||||
|
|
Loading…
Reference in a new issue