From c1320c5f116a5899c4907757a74667ff4e0ee7a3 Mon Sep 17 00:00:00 2001 From: sovitybot Date: Thu, 4 Jul 2024 07:15:25 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20Templates:=20created=20local=20'?= =?UTF-8?q?.github/workflows/add=5Fissue=5Fto=5Fproject.yml'=20from=20remo?= =?UTF-8?q?te=20'.github/workflows/add=5Fissue=5Fto=5Fproject.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/add_issue_to_project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/add_issue_to_project.yml diff --git a/.github/workflows/add_issue_to_project.yml b/.github/workflows/add_issue_to_project.yml new file mode 100644 index 000000000..655427ddb --- /dev/null +++ b/.github/workflows/add_issue_to_project.yml @@ -0,0 +1,17 @@ +name: Add issue to project action + +on: + issues: + types: + - opened + +jobs: + add_issue_to_project: + if: "!(startsWith(github.event.issue.title, '[Zammad Ticket') && github.event.issue.user.login == 'sovitybot')" + name: add_issue_to_project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/sovity/projects/9 + github-token: ${{ secrets.ADD_ISSUE_TO_PROJECT_PAT }}