From 5aa8899ffb0d595889bdc5a7b1177cd3a686fcc0 Mon Sep 17 00:00:00 2001 From: shaybentk <122560991+shaybentk@users.noreply.github.com> Date: Thu, 12 Jan 2023 19:01:39 +0000 Subject: [PATCH] Create ci-test.yml --- .github/workflows/ci-test.yml | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/ci-test.yml diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml new file mode 100644 index 0000000..7511b3a --- /dev/null +++ b/.github/workflows/ci-test.yml @@ -0,0 +1,40 @@ +name: Generate Helm README docs +on: + workflow_dispatch: + pull_request: + +permissions: + contents: read + pull-requests: write + +jobs: + docs: + permissions: + contents: write + pull-requests: write + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.ref }} + + - name: Helm create + run: | + helm create test + helm create test1 + helm create test2 + + - name: Render helm docs singal + uses: shaybentk/helm-docs-action@v0.0.1 + with: + working-chart: test + git-push: "true" + + - name: Render helm docs multie + uses: shaybentk/helm-docs-action@v0.0.1 + with: + working-dir: test1,test2 + git-push: "true" + +