From 6c3262c8c3726d55dfb29d0626213629751d186d Mon Sep 17 00:00:00 2001 From: StephGit <24672636+StephGit@users.noreply.github.com> Date: Wed, 23 Aug 2023 10:19:55 +0200 Subject: [PATCH] chore: github-action to add new issues to the project --- .github/workflows/issues.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/issues.yml diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml new file mode 100644 index 0000000..5eaed9c --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,16 @@ +name: Add 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.4.1 + with: + project-url: https://github.com/users/sfa-siard/projects/1 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}