From c1b9b4c81bb54628952ab83c957efe02e2aa059e Mon Sep 17 00:00:00 2001 From: Cesar N <11819101+cesnietor@users.noreply.github.com> Date: Tue, 13 Jun 2023 16:36:21 -0700 Subject: [PATCH] Add Git job to add new issues to project (#2873) --- .github/workflows/issues.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/issues.yaml diff --git a/.github/workflows/issues.yaml b/.github/workflows/issues.yaml new file mode 100644 index 000000000..77e4ca487 --- /dev/null +++ b/.github/workflows/issues.yaml @@ -0,0 +1,18 @@ +# @format + +name: Issue Workflow + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@RELEASE_VERSION + with: + project-url: https://github.com/orgs/miniohq/projects/2 + github-token: ${{ secrets.BOT_PAT }}