Skip to content

add-issue-label-list #2

add-issue-label-list

add-issue-label-list #2

name: add-issue-label-list
on:
workflow_dispatch:
inputs:
issue-num:
required: true
type: string
description: "Number of the issue to update (issue should already exist!)"
label-name:
required: true
type: string
description: "Name of the label to create a task list for (eg. RENEE, ccbr1310, etc.)"
jobs:
add-list:
runs-on: ubuntu-latest
steps:
- uses: CCBR/actions/add-issue-label-list@vishal-actions
with:
github-token: ${{ github.token }}
issue-num: ${{ inputs.issue-num }}
label-name: ${{ inputs.label-name }}