BUG - Sev-1 - iOS (v 17.3) - Can't navigate most pages using keyboard #3915
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
# | |
# Checks if health/global/design-system label is applied and then assigns the correct QA team member to that ticket | |
# | |
name: '[Utils] Assign QA to issue' | |
on: | |
issues: | |
types: | |
- labeled | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
assign_qa: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: 'Checkout repo' | |
uses: actions/checkout@v3 | |
- name: Assign Health team QA | |
if: github.event.label.name == 'Health' | |
run: | | |
gh issue edit ${{ github.event.issue.number }} --add-assignee "rbontrager" | |
- name: Assign Global team QA | |
if: github.event.label.name == 'global' | |
run: | | |
gh issue edit ${{ github.event.issue.number }} --add-assignee "TKDickson" | |
- name: Assign Design-System team QA | |
if: github.event.label.name == 'design-system' | |
run: | | |
gh issue edit ${{ github.event.issue.number }} --add-assignee "DJUltraTom" |