From f8cd5330bc9cbc8fa80d706d523f147d4160c791 Mon Sep 17 00:00:00 2001 From: Damien Duportal Date: Mon, 15 Nov 2021 19:11:44 +0100 Subject: [PATCH] chore(updatecli) stop using gh-workflow Signed-off-by: Damien Duportal --- .github/workflows/updatecli.yaml | 33 -------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/updatecli.yaml diff --git a/.github/workflows/updatecli.yaml b/.github/workflows/updatecli.yaml deleted file mode 100644 index 6a43d7b..0000000 --- a/.github/workflows/updatecli.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: Execute updatecli process - -on: - # Allow to be run manually - workflow_dispatch: - schedule: - # Run once per week (to avoid alert fatigue) - - cron: '0 2 * * 1' # Every monday at 2am UTC - push: - pull_request: -jobs: - updatecli: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Diff - continue-on-error: true - uses: updatecli/updatecli-action@v1 - with: - command: diff - flags: "--config ./updatecli/updatecli.d --values ./updatecli/values.github-action.yaml" - env: - UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Apply - uses: updatecli/updatecli-action@v1 - if: github.ref == 'refs/heads/main' - with: - command: apply - flags: "--config ./updatecli/updatecli.d --values ./updatecli/values.github-action.yaml" - env: - UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}