From 3a6ad1e55e07dc8d3daeb14ad2123723738f977d Mon Sep 17 00:00:00 2001 From: efb4f5ff-1298-471a-8973-3d47447115dc <73130443+efb4f5ff-1298-471a-8973-3d47447115dc@users.noreply.github.com> Date: Sun, 10 Apr 2022 21:17:36 +0000 Subject: [PATCH] Add files via upload (#2183) --- .github/workflows/autoLabelPR.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/autoLabelPR.yaml diff --git a/.github/workflows/autoLabelPR.yaml b/.github/workflows/autoLabelPR.yaml new file mode 100644 index 00000000..73871ff7 --- /dev/null +++ b/.github/workflows/autoLabelPR.yaml @@ -0,0 +1,15 @@ +name: "Set PR Label" +on: + pull_request: + types: [opened, reopened] + +jobs: + test: + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - uses: Naturalclar/issue-action@v2.0.2 + with: + title-or-body: "both" + parameters: '[ {"keywords": ["Important note", "Pull Request Type", "Related issue", "Dependent PR/issue", "Description", "Screenshots", "Testing", "Desktop", "Additional context"], "labels": ["PR: waiting for review"]}]' + github-token: "${{ secrets.GITHUB_TOKEN }}"