From 4213e3e2b4799d1fec99b2208c2252b01a08db01 Mon Sep 17 00:00:00 2001 From: William Martin Date: Tue, 31 Oct 2023 09:49:46 +0100 Subject: [PATCH] Update secret name to not be prefixed with GITHUB Apparently this isn't allowed --- .github/workflows/discussion-triage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/discussion-triage.yml b/.github/workflows/discussion-triage.yml index 78f357ba1..8fc49cea9 100644 --- a/.github/workflows/discussion-triage.yml +++ b/.github/workflows/discussion-triage.yml @@ -5,7 +5,7 @@ on: types: - labeled jobs: - add-comment: + create-discussion: if: github.event.label.name == 'discuss' runs-on: ubuntu-latest steps: @@ -23,7 +23,7 @@ jobs: } }' -f title="${DISCUSSION_TITLE}" -f body="@${LABELLER} added the discuss label to #${ISSUE_NUMBER}" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_CLI_DISCUSSION_TRIAGE_TOKEN }} + GITHUB_TOKEN: ${{ secrets.CLI_DISCUSSION_TRIAGE_TOKEN }} ISSUE_TITLE: ${{ github.event.issue.title }} ISSUE_NUMBER: ${{ github.event.issue.number }} LABELLER: ${{ github.event.sender.login }}