Add files via upload (#2183)

This commit is contained in:
efb4f5ff-1298-471a-8973-3d47447115dc 2022-04-10 21:17:36 +00:00 committed by GitHub
parent ed6861a09b
commit 3a6ad1e55e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

15
.github/workflows/autoLabelPR.yaml vendored Normal file
View File

@ -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 }}"