Deprecate suggestion prop in TextField component in favor of Autocomplete for accessibility and functionality #2728
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 untriaged label | |
on: | |
issues: | |
types: | |
- opened | |
- labeled | |
jobs: | |
label_issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Check labels | |
id: check_labels | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const labels = context.payload.issue.labels.map(label => label.name); | |
const hasBugLabel = labels.includes('Bug'); | |
const hasUntriagedLabel = labels.includes('untriaged'); | |
core.setOutput('hasBugLabel', hasBugLabel); | |
core.setOutput('hasUntriagedLabel', hasUntriagedLabel); | |
- name: Label issues | |
uses: andymckay/[email protected] | |
if: steps.check_labels.outputs.hasBugLabel && !steps.check_labels.outputs.hasUntriagedLabel | |
with: | |
add-labels: 'untriaged' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |