Skip to content

Port fix of multiple crawler instances sharing state from JS version #2

Port fix of multiple crawler instances sharing state from JS version

Port fix of multiple crawler instances sharing state from JS version #2

Workflow file for this run

name: CI (issue)
on:
# Runs when a new issue is opened.
issues:
types:
- opened
jobs:
label_issues:
name: Add labels
runs-on: ubuntu-latest
permissions:
issues: write
steps:
# Add the "t-tooling" label to all new issues
- uses: actions/github-script@v8
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["t-tooling"]
})