From a8d82323dd363c3f8517ba1d19439193126f1bef Mon Sep 17 00:00:00 2001 From: "Ya-wen, Jeng" Date: Tue, 19 Aug 2025 13:29:41 +0800 Subject: [PATCH] feat: add GitHub Actions workflow to automatically add new issues to project --- .github/workflows/add-to-project.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/add-to-project.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..c5fa487 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,15 @@ +name: Add to GitHub Project + +on: + issues: + types: [opened] + +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - name: Add issue to project + uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/zkmopro/projects/1 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}