k8s - Fairwinds Pluto #72
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: "k8s - Fairwinds Pluto" | |
| on: | |
| schedule: | |
| - cron: "0 0 * * 1" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash -euxo pipefail {0} | |
| env: | |
| DEBUG: ${{ github.event.inputs.debug == true || '' }} | |
| jobs: | |
| fairwinds-pluto: | |
| name: Fairwinds Pluto | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Environment | |
| run: env | sort | |
| - uses: actions/checkout@v7 | |
| - name: Download Pluto | |
| uses: FairwindsOps/pluto/github-action@master | |
| with: | |
| IMAGE_TAG: v5 | |
| - name: Pluto detect-files | |
| run: pluto detect-files -d kubernetes/ |