This repository has been archived by the owner on Feb 6, 2025. It is now read-only.
ci: add opbnb feature to compact-codec job #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/assets/label_pr.js') | |
await label_pr({github, context}) |