From bcb51e0e548d4a3ad5ea3908ceb9e6ea4f621985 Mon Sep 17 00:00:00 2001 From: AgnieszkaZaba <56157996+AgnieszkaZaba@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:15:58 +0100 Subject: [PATCH] =?UTF-8?q?Create=20projects.yml=20to=20automate=20adding?= =?UTF-8?q?=20new=20issues=20and=20PR=20to=20project=20b=E2=80=A6=20(#1446?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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 000000000..929011050 --- /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 }}