Dependency Dashboard #2302
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 Issue Labels | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
product-label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add Esri Product Label | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const action = require('${{ github.workspace }}/.github/scripts/addEsriProductLabel.js') | |
await action({github, context, core}) | |
- name: Add Calcite Package Label | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const action = require('${{ github.workspace }}/.github/scripts/addCalcitePackageLabel.js') | |
await action({github, context, core}) | |
- name: Add Priority Label | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const action = require('${{ github.workspace }}/.github/scripts/addPriorityLabel.js') | |
await action({github, context, core}) |