From f3ee3e46ab566c26c8ce54792753fdcbc4ff3280 Mon Sep 17 00:00:00 2001 From: CJ Yetman Date: Tue, 30 Jan 2024 10:30:46 +0100 Subject: [PATCH] add issues/PRs to maintainer's project --- .github/workflows/add-prs-and-issues-to-project.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/add-prs-and-issues-to-project.yml b/.github/workflows/add-prs-and-issues-to-project.yml index 8a48cac..853a8c2 100644 --- a/.github/workflows/add-prs-and-issues-to-project.yml +++ b/.github/workflows/add-prs-and-issues-to-project.yml @@ -11,11 +11,20 @@ on: - opened jobs: - add-to-project: - name: Add issue to project + add-to-tm-project: + name: Add issue/PR to Transition Monitor project runs-on: ubuntu-latest steps: - uses: actions/add-to-project@v0.5.0 with: project-url: https://github.com/orgs/RMI-PACTA/projects/8 github-token: ${{ secrets.PAT_ADD_ISSUES_TO_PROJECT }} + + add-to-maintainer-project: + name: Add issue/PR to @cjyetman's maintainer project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/RMI-PACTA/projects/13 + github-token: ${{ secrets.PAT_ADD_ISSUES_TO_PROJECT }}