Authenticator navigates back to SignUp when new account verification code is entered after 3 minutes even though Cognito fully activates the account #11
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
# Description: This workflow automatically removes triage labels from issues that have been closed | |
# | |
# Triggered by: closing issues | |
name: Issue Closed | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
clean_labels: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
if: ${{ (contains(github.event.issue.labels.*.name, 'pending-community-response') || contains(github.event.issue.labels.*.name, 'pending-maintainer-response') || contains(github.event.issue.labels.*.name, 'pending-triage')) }} | |
steps: | |
- name: Remove unnecessary labels after closing | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE_NUMBER: ${{ github.event.issue.number }} | |
REPOSITORY_NAME: ${{ github.event.repository.full_name }} | |
run: | | |
gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --remove-label "pending-community-response" --remove-label "pending-maintainer-response" --remove-label "pending-triage" |