From 3180ca21bf440ddca1a0033ce3a0f6321cda76ce Mon Sep 17 00:00:00 2001 From: Valentin Delaye Date: Mon, 14 Oct 2024 10:03:33 +0200 Subject: [PATCH] Applied recipes DeleteUpdateCliWorkflows --- .github/workflows/updatecli.yml | 29 ----------------------------- 1 file changed, 29 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 6c74a90..0000000 --- a/.github/workflows/updatecli.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: updatecli - -on: - workflow_dispatch: - schedule: - - cron: '0 3 * * *' - -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 }}