From d530ff28763473a5f10ff043dc79456468e11d6b Mon Sep 17 00:00:00 2001 From: Jarno Rankinen <50285623+0ranki@users.noreply.github.com> Date: Wed, 8 Feb 2023 19:46:51 +0200 Subject: [PATCH] Add_to_project action --- .github/workflows/add_to_project.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/add_to_project.yml diff --git a/.github/workflows/add_to_project.yml b/.github/workflows/add_to_project.yml new file mode 100644 index 0000000..6371c3a --- /dev/null +++ b/.github/workflows/add_to_project.yml @@ -0,0 +1,18 @@ +name: Add issues to project +uses: +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.0 + with: + # You can target a repository in a different organization + # to the issue + project-url: https://github.com/users/0ranki/projects/1 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}