Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/auto-assign-core-team.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Check team membership via REST
id: team
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.QWIK_AUTO_ASSIGN_PR_PAT }}
ORG: QwikDev
TEAM_SLUG: qwik-team
AUTHOR: ${{ github.event.pull_request.user.login }}
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Assign PR to author
if: steps.team.outputs.isCore == 'true'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.QWIK_AUTO_ASSIGN_PR_PAT }}
run: |
PR_NUMBER=${{ github.event.pull_request.number }}
AUTHOR=${{ github.event.pull_request.user.login }}
Expand All @@ -51,14 +51,14 @@ jobs:
uses: actions/add-to-project@v0.6.1
with:
project-url: https://github.com/orgs/QwikDev/projects/1
github-token: ${{ secrets.QWIK_API_TOKEN_GITHUB }}
github-token: ${{ secrets.QWIK_AUTO_ASSIGN_PR_PAT }}

- name: Ensure project + set Status to "In progress" (draft)
if: steps.team.outputs.isCore == 'true' && github.event.pull_request.draft == true
uses: actions/add-to-project@v0.6.1
with:
project-url: https://github.com/orgs/QwikDev/projects/1
github-token: ${{ secrets.QWIK_API_TOKEN_GITHUB }}
github-token: ${{ secrets.QWIK_AUTO_ASSIGN_PR_PAT }}
fields: |
Status: In progress

Expand All @@ -67,6 +67,6 @@ jobs:
uses: actions/add-to-project@v0.6.1
with:
project-url: https://github.com/orgs/QwikDev/projects/1
github-token: ${{ secrets.QWIK_API_TOKEN_GITHUB }}
github-token: ${{ secrets.QWIK_AUTO_ASSIGN_PR_PAT }}
fields: |
Status: Waiting For Review