ci: test new issue/label actions #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: add-issue-label-list | ||
on: | ||
workflow_call: | ||
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-label: | ||
uses: CCBR/actions/add-issue-label-list@vishal-actions | ||
with: | ||
github-token: ${{ github.token }} | ||
issue-num: ${{ inputs.issue-num }} | ||
label-name: ${{ inputs.label-name }} |