diff --git a/.github/workflows/pr-title-spell-check.yml b/.github/workflows/pr-title-spell-check.yml index eb4c5c3dd..b4d1f0f7f 100644 --- a/.github/workflows/pr-title-spell-check.yml +++ b/.github/workflows/pr-title-spell-check.yml @@ -29,12 +29,14 @@ jobs: check-assignee: name: Check assignee + runs-on: ubuntu-latest + steps: + - name: Check assignee run: | response=$(curl -L \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ -H "X-GitHub-Api-Version: 2022-11-28" \ - https://api.github.com/repos/${GITHUB_REPOSITORY}/assignees) + https://api.github.com/repos/${{ github.repository }}/assignees) echo "$response" > response.log -