mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 01:25:36 -05:00
13 lines
320 B
YAML
13 lines
320 B
YAML
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'
|