From 947097ffcfa8799bd2e84bdaa77a3e0c64d5c699 Mon Sep 17 00:00:00 2001 From: Emelie Graven Date: Tue, 25 Feb 2025 19:26:45 +0100 Subject: [PATCH] ci: Add project automation --- .github/workflows/add-issues-to-project.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/add-issues-to-project.yaml diff --git a/.github/workflows/add-issues-to-project.yaml b/.github/workflows/add-issues-to-project.yaml new file mode 100644 index 0000000..6c9b035 --- /dev/null +++ b/.github/workflows/add-issues-to-project.yaml @@ -0,0 +1,16 @@ +name: Add issues to Backend project. + +on: + issues: + 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: + project-url: https://github.com/orgs/famedly/projects/50 + github-token: ${{ secrets.ADD_ISSUE_TO_PROJECT_PAT }}