fix: Revert "chore: bump pylint (#27711)" #84
Workflow file for this run
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: 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' | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v4 | |
- name: Setup supersetbot | |
uses: ./.github/actions/setup-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 }} |