Skip to content

Shouldn't the NMR solvent be a chemical substance instead of molecular entity? #2

Shouldn't the NMR solvent be a chemical substance instead of molecular entity?

Shouldn't the NMR solvent be a chemical substance instead of molecular entity? #2

Workflow file for this run

# Auto-labeling new issues workflow
name: Auto-Label New Issues
# Controls when the action will run.
on:
issues:
types:
- opened
permissions:
issues: write
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Add "discussion" label to new issue
uses: actions/github-script@v7
with:
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['discussion']
})