feat(supersetbot): label PRs and issues with author's public org (#27571)

This commit is contained in:
Maxime Beauchemin
2024-03-20 09:31:01 -07:00
committed by GitHub
parent ad7bd09819
commit d5680ad376
3 changed files with 57 additions and 1 deletions

26
.github/workflows/issue_creation.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: supersetbot orglabel based on author
on:
issues:
types: [created, edited]
pull_request:
types: [created, edited]
jobs:
superbot-orglabel:
runs-on: ubuntu-latest
steps:
- name: Execute SupersetBot Command
uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install -g supersetbot
- name: Execute custom Node.js script
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Label the issue with the appropriate org using supersetbot
# - this requires for the author to be publicly associated with their org
# - and for the org to be listed in `supersetbot/src/metadata.js`
supersetbot orglabel --issue ${{ github.event.number }} --repo ${{ github.repository }}