diff --git a/.github/workflows/branch-created.yml b/.github/workflows/branch-created.yml index ff72b8123f10..08c37b813955 100644 --- a/.github/workflows/branch-created.yml +++ b/.github/workflows/branch-created.yml @@ -64,7 +64,7 @@ jobs: env: RELEASE_BOARD_GH_APP_CREDS: ${{ secrets.RELEASE_BOARD_GH_APP_CREDS }} run: | - TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org electron) + TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org=electron) echo "TOKEN=$TOKEN" >> "$GITHUB_OUTPUT" - name: Create Release Project Board if: ${{ steps.check-major-version.outputs.MAJOR }} diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml index 3cf7e33783a7..bed340c28db8 100644 --- a/.github/workflows/issue-labeled.yml +++ b/.github/workflows/issue-labeled.yml @@ -19,7 +19,7 @@ jobs: RELEASE_BOARD_GH_APP_CREDS: ${{ secrets.RELEASE_BOARD_GH_APP_CREDS }} run: | set -eo pipefail - TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org electron) + TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org=electron) echo "TOKEN=$TOKEN" >> "$GITHUB_OUTPUT" - name: Set status if: ${{ steps.generate-token.outputs.TOKEN }} diff --git a/.github/workflows/issue-unlabeled.yml b/.github/workflows/issue-unlabeled.yml index 41d4658470a1..08c3e421fc9b 100644 --- a/.github/workflows/issue-unlabeled.yml +++ b/.github/workflows/issue-unlabeled.yml @@ -28,7 +28,7 @@ jobs: RELEASE_BOARD_GH_APP_CREDS: ${{ secrets.RELEASE_BOARD_GH_APP_CREDS }} run: | set -eo pipefail - TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org electron) + TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org=electron) echo "TOKEN=$TOKEN" >> "$GITHUB_OUTPUT" - name: Set status if: ${{ steps.generate-token.outputs.TOKEN }} diff --git a/.github/workflows/pull-request-labeled.yml b/.github/workflows/pull-request-labeled.yml index a60279b5c372..d15c75fbc11f 100644 --- a/.github/workflows/pull-request-labeled.yml +++ b/.github/workflows/pull-request-labeled.yml @@ -19,7 +19,7 @@ jobs: RELEASE_BOARD_GH_APP_CREDS: ${{ secrets.RELEASE_BOARD_GH_APP_CREDS }} run: | set -eo pipefail - TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org electron) + TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org=electron) echo "TOKEN=$TOKEN" >> "$GITHUB_OUTPUT" - name: Set status if: ${{ steps.generate-token.outputs.TOKEN }}