**Description** Draft addition of cert-manager as an operator chart **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
136 lines
4.9 KiB
YAML
136 lines
4.9 KiB
YAML
name: "Charts: Lint"
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
checkoutCommit:
|
|
required: true
|
|
type: string
|
|
chartChangesDetected:
|
|
required: true
|
|
type: string
|
|
modifiedFiles:
|
|
required: true
|
|
type: string
|
|
modifiedCharts:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
lint-and-verify:
|
|
name: Lint Charts and Verify Dependencies
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout [master]
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
|
|
with:
|
|
fetch-depth: 1
|
|
ref: master
|
|
|
|
- name: Checkout [commit]
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
|
|
with:
|
|
fetch-depth: 1
|
|
ref: ${{ inputs.checkoutCommit }}
|
|
|
|
- name: Setting repo parent dir as safe safe.directory
|
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
|
|
- name: Install go-yq
|
|
run: |
|
|
mkdir -p $HOME/.local/bin
|
|
wget https://github.com/mikefarah/yq/releases/download/v4.26.1/yq_linux_amd64 -O $HOME/.local/bin/go-yq && \
|
|
chmod +x $HOME/.local/bin/go-yq
|
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
|
|
- name: Install pre-commit, yamale and yamllint
|
|
run: |
|
|
pip3 install --no-cache-dir pre-commit yamale yamllint
|
|
|
|
- name: Prep Helm
|
|
run: |
|
|
helm repo add truecharts https://charts.truecharts.org
|
|
helm repo add truecharts-deps https://deps.truecharts.org
|
|
helm repo add truecharts-library https://library-charts.truecharts.org
|
|
helm repo add jetstack https://charts.jetstack.io
|
|
helm repo update
|
|
|
|
- name: Collect changes (branch-based)
|
|
id: list-changed
|
|
if: inputs.chartChangesDetected == 'true'
|
|
shell: bash
|
|
run: |
|
|
CHARTS="${{ inputs.modifiedCharts }}"
|
|
echo "Modified Charts: ${CHARTS}"
|
|
|
|
EXCLUDED_JSON=$(go-yq eval -o=json '.excluded-charts // []' .github/ct-lint.yaml)
|
|
CHARTS_JSON=$(echo "${CHARTS}" | jq --raw-input '.' | jq --compact-output --slurp '.')
|
|
OUTPUT_JSON=$(echo "{\"excluded\": ${EXCLUDED_JSON}, \"all\": ${CHARTS_JSON}}" | jq --compact-output '.all-.excluded')
|
|
|
|
echo CHANGED_CHARTS=${OUTPUT_JSON} >> "$GITHUB_OUTPUT"
|
|
if [[ $(echo ${OUTPUT_JSON} | jq --compact-output '. | length') -gt 0 ]]; then
|
|
echo "detected=true" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
- name: Test and Fix Pre-Commit Issues
|
|
shell: bash
|
|
# TODO: Only run pre-commit on changed files
|
|
# TODO: Commit fixes
|
|
if: inputs.chartChangesDetected == 'true'
|
|
run: |
|
|
echo "Running pre-commit test-and-cleanup..."
|
|
# Fix sh files to always be executable
|
|
find . -name '*.sh' | xargs chmod +x
|
|
pre-commit run --all || pre-commit run --all
|
|
|
|
- name: Fetch and Verify dependencies
|
|
shell: bash
|
|
if: steps.list-changed.outputs.detected == 'true'
|
|
env:
|
|
charts_path: "./"
|
|
run: |
|
|
CHANGED=$(echo '${{ steps.list-changed.outputs.CHANGED_CHARTS }}' | jq --raw-output '.[]')
|
|
for changed in ${CHANGED}; do
|
|
.github/scripts/fetch_helm_deps.sh "${changed}"
|
|
done
|
|
|
|
- name: Run Chart Linting
|
|
continue-on-error: true
|
|
id: lint
|
|
if: steps.list-changed.outputs.detected == 'true'
|
|
env:
|
|
result_file: /tmp/lint_result.txt
|
|
run: |
|
|
CHANGED=$(echo '${{ steps.list-changed.outputs.CHANGED_CHARTS }}' | jq --raw-output '.[]')
|
|
# If the github.base_ref is empty (eg it runs outside of a PR) it fails back to origin/master
|
|
.github/scripts/tc-lint.sh '${{ steps.list-changed.outputs.CHANGED_CHARTS }}' "origin/${{ github.base_ref }}"
|
|
|
|
- name: Create/Update comment
|
|
if: steps.list-changed.outputs.detected == 'true'
|
|
continue-on-error: true
|
|
uses: thollander/actions-comment-pull-request@dadb7667129e23f12ca3925c90dc5cd7121ab57e # v2
|
|
with:
|
|
filePath: /tmp/lint_result.txt
|
|
comment_tag: lint_results
|
|
mode: recreate
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
- name: Lint Result
|
|
if: steps.list-changed.outputs.detected == 'true'
|
|
shell: bash
|
|
run: |
|
|
if [ "${{ steps.lint.outcome }}" != "success" ]; then
|
|
echo "❌ Linting failed ❌"
|
|
echo '###############################################################'
|
|
echo '## 👀 Expand [Run Chart Linting] step to view the results 👀 ##'
|
|
echo '###############################################################'
|
|
exit 1
|
|
fi
|
|
|
|
- uses: vishnudxb/cancel-workflow@c3c77eb4383ba7d023e6614a07d94fe990501ac6 # tag=v1.2
|
|
if: failure()
|
|
with:
|
|
repo: truecharts/chart
|
|
workflow_id: ${{ github.run_id }}
|
|
access_token: ${{ github.token }}
|