mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
24 lines
466 B
YAML
24 lines
466 B
YAML
name: Label PRs
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
label_prs:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Label PRs
|
|
uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
const label_pr = require('./.github/scripts/label_pr.js')
|
|
await label_pr({github, context})
|