feat: add GitHub Actions workflow to automatically add newly opened issues to a project

This commit is contained in:
Ya-wen, Jeng 2025-08-19 13:25:25 +08:00
parent 3b6c78a1e5
commit df3831a8c2

15
.github/workflows/add-to-project.yml vendored Normal file
View File

@ -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 }}