Fast refreshing is very slow had to wait along time for it to update. #11859
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: Validate issue | |
on: | |
issues: | |
types: [opened, labeled] | |
issue_comment: | |
types: [created] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
issues: write | |
jobs: | |
triage: | |
name: Auto triage issue | |
runs-on: ubuntu-latest | |
steps: | |
- name: Nissuer | |
uses: balazsorban44/[email protected] | |
with: | |
label-area-prefix: 'area:' | |
label-area-section: 'Which area\(s\) are affected\? \(Select all that apply\)(.*)### Additional context' | |
label-comments: | | |
{ | |
"please add a complete reproduction": ".github/invalid-reproduction.md", | |
"please simplify reproduction": ".github/simplify-reproduction.md", | |
"please verify canary": ".github/verify-canary.md" | |
} | |
reproduction-comment: '.github/invalid-link.md' | |
reproduction-hosts: 'github.com,codesandbox.io' | |
reproduction-link-section: '### Link to the code that reproduces this issue(.*)### To Reproduce' | |
reproduction-invalid-label: 'invalid link' | |
reproduction-issue-labels: 'template: bug' |