Fixing port request actions (#19966)

This commit is contained in:
Aasim Khan
2022-07-12 15:54:56 -07:00
committed by GitHub
parent 050cb16619
commit b15f3bd986
17 changed files with 1737 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
name: 'PR Labeler'
description: 'Automatically add a Label to a PR'
inputs:
token:
description: GitHub token with issue, comment, and label read/write permissions
default: ${{ github.token }}
label:
description: Github label to add to the PR
required: true
runs:
using: 'node12'
main: 'index.js'