From ed3726ba7aea45731260ec8f75f05fc60c2b0f22 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Arcos Date: Thu, 22 Jun 2023 13:43:57 +0200 Subject: [PATCH] Create issue_handler.yml --- .github/workflows/issue_handler.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/issue_handler.yml diff --git a/.github/workflows/issue_handler.yml b/.github/workflows/issue_handler.yml new file mode 100644 index 0000000000000..978e80428ce89 --- /dev/null +++ b/.github/workflows/issue_handler.yml @@ -0,0 +1,16 @@ +name: Add new issues to project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/esp-rs/projects/2 + github-token: ${{ secrets.PAT }}