From 77d16c23a9ff22f855e2e0d88ae5d8f69d3db79e Mon Sep 17 00:00:00 2001 From: Valentin Delaye Date: Sun, 13 Oct 2024 15:43:05 +0200 Subject: [PATCH] Applied recipes DeleteUpdateCliWorkflows --- .github/workflows/updatecli.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/updatecli.yml diff --git a/.github/workflows/updatecli.yml b/.github/workflows/updatecli.yml deleted file mode 100644 index a5223e85..00000000 --- a/.github/workflows/updatecli.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: updatecli - -on: - workflow_dispatch: - -jobs: - updatecli: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup updatecli - uses: updatecli/updatecli-action@v2 - - - name: Diff - continue-on-error: true - run: | - updatecli diff --config updatecli/updatecli.d --values updatecli/values.yml - env: - UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Apply - if: github.ref == 'refs/heads/main' - run: | - updatecli apply --config updatecli/updatecli.d --values updatecli/values.yml - env: - UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}