Skip to content

create_runtime unit test is failing in test_process #80

create_runtime unit test is failing in test_process

create_runtime unit test is failing in test_process #80

Workflow file for this run

name: Add new issues to the NCL planning project and label them
on:
issues:
types:
- opened
- reopened
- transferred
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/lava-nc/projects/3
github-token: ${{ secrets.ADD_ISSUES_TO_PROJECT }}
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["0-needs-review"]
})