From e2e1c098a215a80cd026235a2cca50efc642303e Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Sat, 22 Oct 2022 18:28:16 +0200 Subject: [PATCH] :construction_worker: Add auto link labeled issues to project --- .github/workflows/auto-add-to-project.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/auto-add-to-project.yml diff --git a/.github/workflows/auto-add-to-project.yml b/.github/workflows/auto-add-to-project.yml new file mode 100644 index 000000000..0625cea7d --- /dev/null +++ b/.github/workflows/auto-add-to-project.yml @@ -0,0 +1,16 @@ +name: Automatically add issues to projects when labeled + +on: + issues: + types: + - labeled + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.3.0 + with: + project-url: https://github.com/users/baptisteArno/projects/4 + github-token: ${{ secrets.PERSONAL_TOKEN }}