37 lines
899 B
YAML
37 lines
899 B
YAML
|
name: Add Community Label
|
||
|
|
||
|
on:
|
||
|
pull_request_target:
|
||
|
types: [opened]
|
||
|
issues:
|
||
|
types: [opened]
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
permissions: {}
|
||
|
|
||
|
jobs:
|
||
|
verify:
|
||
|
name: Verify and add label
|
||
|
runs-on: ubuntu-20.04
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pull-requests: write
|
||
|
issues: write
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Setup Node.js
|
||
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
|
||
|
|
||
|
- name: npm install
|
||
|
run: npm install -D
|
||
|
|
||
|
- name: Check if user is a community contributor
|
||
|
id: check
|
||
|
run: node .github/workflows/scripts/is-community-contributor.js
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|