From 367853d6a6f867aac433f1ed168c6a616b0eb4a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=97=AA=D1=94=CE=BD=CE=B9=CE=B7=20=E1=97=B7=CF=85=D0=BD?= =?UTF-8?q?=CA=9F?= Date: Mon, 22 Mar 2021 11:08:37 -0400 Subject: [PATCH] fix: disable helm-docs workflow --- .github/workflows/charts-helm-docs.yaml | 48 ----------------- .../workflows/charts-helm-docs.yaml.disabled | 52 +++++++++++++++++++ 2 files changed, 52 insertions(+), 48 deletions(-) delete mode 100644 .github/workflows/charts-helm-docs.yaml create mode 100644 .github/workflows/charts-helm-docs.yaml.disabled diff --git a/.github/workflows/charts-helm-docs.yaml b/.github/workflows/charts-helm-docs.yaml deleted file mode 100644 index 6826353b..00000000 --- a/.github/workflows/charts-helm-docs.yaml +++ /dev/null @@ -1,48 +0,0 @@ -name: "Charts: helm-docs" - -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * *" - -jobs: - update-helm-docs: - runs-on: ubuntu-20.04 - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Install Helm - uses: azure/setup-helm@v1 - with: - version: v3.5.3 - - - uses: actions/setup-python@v2 - with: - python-version: 3.7 - - - name: Install helm-docs - run: | - wget -O /tmp/helm-docs.deb https://github.com/norwoodj/helm-docs/releases/download/v1.5.0/helm-docs_1.5.0_linux_amd64.deb - sudo dpkg -i /tmp/helm-docs.deb - - - name: Update Helm docs - run: | - ./hack/gen-helm-docs.sh - - - name: Create pull request for helm-docs - uses: peter-evans/create-pull-request@v3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - branch: "helm-docs/ci" - delete-branch: true - title: "chore(docs): update helm-docs [ci-skip]" - signoff: true - committer: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" - author: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" - commit-message: "chore(docs): update helm-docs [ci-skip]" - body: | - Signed-off-by: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> - labels: helm-docs diff --git a/.github/workflows/charts-helm-docs.yaml.disabled b/.github/workflows/charts-helm-docs.yaml.disabled new file mode 100644 index 00000000..3e2ffaaf --- /dev/null +++ b/.github/workflows/charts-helm-docs.yaml.disabled @@ -0,0 +1,52 @@ +# +# Disabled until we fix the chart releaser +# + +# name: "Charts: helm-docs" + +# on: +# workflow_dispatch: +# schedule: +# - cron: "0 0 * * *" + +# jobs: +# update-helm-docs: +# runs-on: ubuntu-20.04 +# steps: +# - name: Checkout +# uses: actions/checkout@v2 +# with: +# fetch-depth: 0 + +# - name: Install Helm +# uses: azure/setup-helm@v1 +# with: +# version: v3.5.3 + +# - uses: actions/setup-python@v2 +# with: +# python-version: 3.7 + +# - name: Install helm-docs +# run: | +# wget -O /tmp/helm-docs.deb https://github.com/norwoodj/helm-docs/releases/download/v1.5.0/helm-docs_1.5.0_linux_amd64.deb +# sudo dpkg -i /tmp/helm-docs.deb + +# - name: Update Helm docs +# run: | +# ./hack/gen-helm-docs.sh + +# - name: Create pull request for helm-docs +# uses: peter-evans/create-pull-request@v3 +# with: +# token: ${{ secrets.GITHUB_TOKEN }} +# branch: "helm-docs/ci" +# delete-branch: true +# title: "chore(docs): update helm-docs [ci-skip]" +# signoff: true +# committer: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" +# author: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" +# commit-message: "chore(docs): update helm-docs [ci-skip]" +# body: | +# Signed-off-by: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> +# labels: helm-docs