From 936d42f8ddcc19d37c3f40c2d7ebb661409bffa7 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Wed, 21 Jan 2026 15:10:21 -0500 Subject: [PATCH 1/2] Improve github actions docs * out of date scopes * typos --- .../continuous-deployment/github-actions-ci.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/plural-features/continuous-deployment/github-actions-ci.md b/pages/plural-features/continuous-deployment/github-actions-ci.md index 1c3e943e..e81f4bc8 100644 --- a/pages/plural-features/continuous-deployment/github-actions-ci.md +++ b/pages/plural-features/continuous-deployment/github-actions-ci.md @@ -25,7 +25,7 @@ spec: issuer: https://token.actions.githubusercontent.com # the oidc issuer url for gh actions, can be swapped for any other platform with oidc federation support user: someone@example.com # should point to the user email you want the federated credential to auth as scopes: - - createPullRequest + - catalog.write claimsLike: sub: "repo:pluralsh/console:ref:refs/heads/master" # any regex is supported ``` @@ -137,14 +137,14 @@ jobs: uses: pluralsh/setup-plural@v1 with: email: console@plural.sh - consoleUrl: https://my.console.cloud.plurall.sh + consoleUrl: https://my.console.cloud.plural.sh - name: Set outputs id: sha run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT # unfortunately gh actions doesn't expose this natively lol - name: Trigger PR uses: pluralsh/trigger-pull-request@v1 with: - url: https://my.console.cloud.plurall.sh + url: https://my.console.cloud.plural.sh token: ${{ steps.plural.outputs.consoleToken }} branch: plrl/console/update-${{ steps.sha.outputs.sha_short }} prAutomation: console-updater # the pr automation name above From f1060162a9fac850eea6f91f293db7670deddd07 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Wed, 21 Jan 2026 17:35:22 -0500 Subject: [PATCH 2/2] fix semvers for actions --- .../continuous-deployment/github-actions-ci.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/plural-features/continuous-deployment/github-actions-ci.md b/pages/plural-features/continuous-deployment/github-actions-ci.md index e81f4bc8..5d2bbc86 100644 --- a/pages/plural-features/continuous-deployment/github-actions-ci.md +++ b/pages/plural-features/continuous-deployment/github-actions-ci.md @@ -134,7 +134,7 @@ jobs: ############################################################### - name: setup plural id: plural - uses: pluralsh/setup-plural@v1 + uses: pluralsh/setup-plural@v2 with: email: console@plural.sh consoleUrl: https://my.console.cloud.plural.sh @@ -142,7 +142,7 @@ jobs: id: sha run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT # unfortunately gh actions doesn't expose this natively lol - name: Trigger PR - uses: pluralsh/trigger-pull-request@v1 + uses: pluralsh/trigger-pull-request@v2 with: url: https://my.console.cloud.plural.sh token: ${{ steps.plural.outputs.consoleToken }}