From 02b63e49fd975a5fd248e4a36a8bda6aa85e2faa Mon Sep 17 00:00:00 2001 From: Nicolas Schweitzer Date: Tue, 3 Dec 2024 16:23:04 +0100 Subject: [PATCH] fix github token name --- .github/workflows/assign_issue.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/assign_issue.yml b/.github/workflows/assign_issue.yml index a3bac92838e1fe..4ae0252e262d6f 100644 --- a/.github/workflows/assign_issue.yml +++ b/.github/workflows/assign_issue.yml @@ -2,8 +2,8 @@ name: "Assign issue to a team" on: - issues: - types: [opened, reopened] + issues: + types: [opened, reopened] jobs: auto_assign_issue: @@ -24,6 +24,6 @@ jobs: pip install --upgrade pip && pip install --no-compile --no-cache-dir torch transformers invoke codeowners slack-sdk PyGithub python-gitlab semver - name: Assign issue env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - team=`inv -e issue.assign-owner --issue ${{ github.event.issue.number }}` + inv -e issue.assign-owner --issue ${{ github.event.issue.number }}