Skip to content

fix(web): #4232 When switching the organization the branding informat… #1873

fix(web): #4232 When switching the organization the branding informat…

fix(web): #4232 When switching the organization the branding informat… #1873

Workflow file for this run

name: Add Community Label
on:
pull_request_target:
types: [opened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Verify
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Octokit
run: npm --prefix .github/workflows/scripts install @octokit/action
- name: Check if user is a community contributor
id: check
run: node .github/workflows/scripts/community-contribution-label.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}