Skip to content

add a subcommand to clean all artifacts created by snfoundry #1082

add a subcommand to clean all artifacts created by snfoundry

add a subcommand to clean all artifacts created by snfoundry #1082

Workflow file for this run

name: Label issues
on:
issues:
types:
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v7
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["new"]
})