Skip to content

Improve disk buffering reading paradigm #133

Improve disk buffering reading paradigm

Improve disk buffering reading paradigm #133

---
name: Assign issue owners
on:
issues:
types: [labeled]
permissions:
contents: read
jobs:
assign-owners:
permissions:
contents: read
issues: write
runs-on: ubuntu-latest
if: startsWith(github.event.label.name, 'component:')
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: npm
cache-dependency-path: .github/scripts/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: .github/scripts
- name: Assign issue to component owners
run: node .github/scripts/assign-issue-owners.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LABEL_NAME: ${{ github.event.label.name }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
REPO_OWNER: ${{ github.repository_owner }}
REPO_NAME: ${{ github.event.repository.name }}