From c6fa680b15d3294cd519abe10cd1815fcd30a2ae Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Tue, 28 Jun 2022 11:20:31 +0200 Subject: [PATCH] Automate adding issues and PRs to the CEP project. (#30) --- .github/workflows/project.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 00000000..06180516 --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,18 @@ +name: Add to Project + +on: + issues: + types: + - opened + pull_request_target: + types: + - opened + +jobs: + add_to_project: + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.0.4 + with: + project-url: https://github.com/orgs/conda-incubator/projects/1 + github-token: ${{ secrets.CEPS_PROJECT_TOKEN }}