Skip to content

ci: test new issue/label actions #1

ci: test new issue/label actions

ci: test new issue/label actions #1

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

Check failure on line 17 in .github/workflows/add-issue-label-list.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/add-issue-label-list.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be rooted in '.github/workflows'
with:
github-token: ${{ github.token }}
issue-num: ${{ inputs.issue-num }}
label-name: ${{ inputs.label-name }}