From d2bbbde49d01a307227e153b7a16670ca81d65af Mon Sep 17 00:00:00 2001 From: holysoles Date: Thu, 23 Jan 2025 09:46:21 -0600 Subject: [PATCH 1/3] Support actions on forks by specifying repo during checkout --- .github/workflows/ci-helm-lint-test.yml | 4 ++++ .github/workflows/helm-docs.yaml | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/ci-helm-lint-test.yml b/.github/workflows/ci-helm-lint-test.yml index 88b5978..38a007d 100644 --- a/.github/workflows/ci-helm-lint-test.yml +++ b/.github/workflows/ci-helm-lint-test.yml @@ -17,6 +17,8 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: "0" + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Install Helm uses: azure/setup-helm@v4 @@ -50,6 +52,8 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: "0" + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Install Helm uses: azure/setup-helm@v4 diff --git a/.github/workflows/helm-docs.yaml b/.github/workflows/helm-docs.yaml index 6704c62..3248325 100644 --- a/.github/workflows/helm-docs.yaml +++ b/.github/workflows/helm-docs.yaml @@ -20,6 +20,7 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Render helm docs inside the README.md and push changes back to PR branch uses: jessebot/helm-docs-action@0.0.1 From f6a7f58383cd7ce1fe8e0121f92a358db4596921 Mon Sep 17 00:00:00 2001 From: holysoles Date: Thu, 23 Jan 2025 09:47:29 -0600 Subject: [PATCH 2/3] update s3 section docstring --- charts/pixelfed/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/pixelfed/values.yaml b/charts/pixelfed/values.yaml index 5912a7d..8994a6b 100644 --- a/charts/pixelfed/values.yaml +++ b/charts/pixelfed/values.yaml @@ -554,7 +554,7 @@ pixelfed: # -- key in existing Kubernetes Secret for password. If set, ignores mail.password password: "" - # Mail Configuration (Post-Installer) + # S3 Configuration (Required if .Values.pixelfed.pf.enable_cloud is true) s3: # -- s3 url including protocol such as https://s3.domain.com url: "" From 8f266cbf91810847fd1fa222696a98d7a9fc817d Mon Sep 17 00:00:00 2001 From: Jesse Hitch Date: Thu, 23 Jan 2025 21:34:59 +0100 Subject: [PATCH 3/3] Update helm-docs.yaml - comment out workingDir as its unexpected here --- .github/workflows/helm-docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helm-docs.yaml b/.github/workflows/helm-docs.yaml index 3248325..19f8036 100644 --- a/.github/workflows/helm-docs.yaml +++ b/.github/workflows/helm-docs.yaml @@ -25,5 +25,5 @@ jobs: - name: Render helm docs inside the README.md and push changes back to PR branch uses: jessebot/helm-docs-action@0.0.1 with: - working-dir: charts/pixelfed + # working-dir: charts/pixelfed git-push: "true"