From 11e1615832c681241f611af2e2cce610ea515549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agnieszka=20=C5=BBaba?= Date: Sun, 15 Dec 2024 12:52:34 +0100 Subject: [PATCH] add projects.yml file - automate adding PRs and issues to the project board --- .github/workflows/projects.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/projects.yml diff --git a/.github/workflows/projects.yml b/.github/workflows/projects.yml new file mode 100644 index 00000000..360002cf --- /dev/null +++ b/.github/workflows/projects.yml @@ -0,0 +1,19 @@ +name: Add new issues and pull requests to project board + +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/open-atmos/projects/6 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} \ No newline at end of file