From 2927d514d7ba0c83db36520120d22e061be53119 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Fri, 16 Jan 2026 22:45:04 -0500 Subject: [PATCH] chore: add auto-project workflow --- .github/workflows/auto-project.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/auto-project.yml diff --git a/.github/workflows/auto-project.yml b/.github/workflows/auto-project.yml new file mode 100644 index 0000000..3e95066 --- /dev/null +++ b/.github/workflows/auto-project.yml @@ -0,0 +1,13 @@ +name: Auto Add to Project + +on: + issues: + types: [opened] + pull_request: + types: [opened] + +jobs: + add-to-project: + uses: RequestNetwork/.github/.github/workflows/add-to-project.yml@main + secrets: + PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }}