Skip to content

Commit

Permalink
Merge branch 'main' into cobadged-cards-support
Browse files Browse the repository at this point in the history
  • Loading branch information
PritishBudhiraja authored Aug 18, 2024
2 parents a974990 + a12363a commit 140b5eb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pr-title-spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,15 @@ jobs:
uses: crate-ci/typos@master
with:
files: ./pr_title.txt

- name: Assign to author
run: |
PR_NUMBER=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
curl -L \
-X POST \
-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}/issues/${PR_NUMBER}/assignees \
-d '{"assignees":["${{ github.event.pull_request.user.login }}"]}'

0 comments on commit 140b5eb

Please sign in to comment.