Skip to content

Explain the purpose of [[target.starknet-contract]] in context of the optimized test compilation architecture #982

Explain the purpose of [[target.starknet-contract]] in context of the optimized test compilation architecture

Explain the purpose of [[target.starknet-contract]] in context of the optimized test compilation architecture #982

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"]
})