From 7167371f87ae641012549922a292050562821dce Mon Sep 17 00:00:00 2001 From: Marko Date: Mon, 10 Oct 2022 12:49:31 +0200 Subject: [PATCH] chore: project automation (#13481) * test pr automation * github token * test++ * test++ * if pr is reopened add it * test++ * test++ * test++ * test++ --- .github/workflows/project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/project.yml diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml new file mode 100644 index 0000000000..5978270a57 --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,17 @@ +name: Add PR to project + +on: + pull_request: + types: + - opened + - reopened + +jobs: + add-to-project: + name: Add pull request to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.3.0 + with: + project-url: https://github.com/orgs/cosmos/projects/26 + github-token: ${{ secrets.PERSONAL_TOKEN }}