[NV-2836] 🐛 Bug Report: Bad Request incase of integration update api if we miss credentials which is optional in api docs #361
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: Add Triage Label | |
on: | |
issues: | |
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/add-triage-label.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |