default param values in dark mode API docs are prohibitively low contrast. #6728
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 }} |