From 344775dfbc2df807f228cc4aa751df20e6998a14 Mon Sep 17 00:00:00 2001 From: Nazar Rybitskyi Date: Wed, 14 May 2025 14:20:52 -0500 Subject: [PATCH] add PR automation for the product platform board --- .github/workflows/pr-automation.yml | 15 +++++++++++++++ .gitignore | 1 + 2 files changed, 16 insertions(+) create mode 100644 .github/workflows/pr-automation.yml diff --git a/.github/workflows/pr-automation.yml b/.github/workflows/pr-automation.yml new file mode 100644 index 0000000..e942b46 --- /dev/null +++ b/.github/workflows/pr-automation.yml @@ -0,0 +1,15 @@ +name: Pull Request Automation +on: + pull_request: + types: [opened, reopened, ready_for_review, converted_to_draft] + +jobs: + pr-automation: + runs-on: ubuntu-latest + steps: + - uses: articulate/pr-project-process-automation@v1.1.1 + with: + token: ${{ secrets.GH_PAT }} + projectNumber: 101 + reviewState: "👀 In review" + inProgressState: "🏗 In progress" diff --git a/.gitignore b/.gitignore index ccb9a68..21c41be 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ coverage dist node_modules +/.idea