From fa19ae20ec5ffa7fea816b63314716749c6ae883 Mon Sep 17 00:00:00 2001 From: Alex Sickler Date: Fri, 18 Jul 2025 10:15:21 -0400 Subject: [PATCH 1/2] CI: Add/Update workflow 'add-issues-to-project.yml' to manage project issues --- .github/workflows/add-issues-to-project.yml | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/add-issues-to-project.yml diff --git a/.github/workflows/add-issues-to-project.yml b/.github/workflows/add-issues-to-project.yml new file mode 100644 index 0000000..6a06ec9 --- /dev/null +++ b/.github/workflows/add-issues-to-project.yml @@ -0,0 +1,23 @@ +name: Add issues to project + +on: + issues: + types: + - opened + pull_request: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + # You can target a project in a different organization or user account + # to the issue. + # For organization projects: https://github.com/orgs/ORG_NAME/projects/PROJECT_NUMBER + # For user projects: https://github.com/users/USER_NAME/projects/PROJECT_NUMBER + project-url: https://github.com/orgs/childrens-bti/projects/1 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} From 88b37727e3a60a00bec1b5c3dcfa06f5e91450fa Mon Sep 17 00:00:00 2001 From: Alex Sickler Date: Fri, 18 Jul 2025 14:05:28 -0400 Subject: [PATCH 2/2] CI: Add/Update workflow 'add-issues-to-project.yml' to manage project issues --- .github/workflows/add-issues-to-project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-issues-to-project.yml b/.github/workflows/add-issues-to-project.yml index 6a06ec9..ccb77d7 100644 --- a/.github/workflows/add-issues-to-project.yml +++ b/.github/workflows/add-issues-to-project.yml @@ -13,7 +13,7 @@ jobs: name: Add issue to project runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@v1.0.2 + - uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e with: # You can target a project in a different organization or user account # to the issue.