From 867557cfa547c0c76583a0406e0c4b64b4887601 Mon Sep 17 00:00:00 2001 From: Asmir Avdicevic Date: Fri, 3 Jan 2025 13:54:41 +0100 Subject: [PATCH] chore: add project tracking (#70) --- .github/workflows/project.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/project.yaml diff --git a/.github/workflows/project.yaml b/.github/workflows/project.yaml new file mode 100644 index 0000000..863440d --- /dev/null +++ b/.github/workflows/project.yaml @@ -0,0 +1,19 @@ +name: Add PRs and Issues to Project + +on: + issues: + types: + - opened + pull_request: + types: + - opened + +jobs: + add-to-project: + name: Add to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/n0-computer/projects/1 + github-token: ${{ secrets.PROJECT_PAT }} \ No newline at end of file