Global concurency utilities should return early if no limit names are given #8669
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: Issue bot | |
on: | |
issues: | |
types: [closed, assigned, unassigned, labeled] | |
jobs: | |
remove_label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove status labels on close | |
if: github.event.action == 'closed' | |
run: gh issue edit --repo prefecthq/prefect ${{ github.event.issue.number }} --remove-label "needs:triage" --remove-label "needs:attention" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |