[π] Modal Component (Headlesss) Fails to Close When Competing Transitions/Animations Occur #140
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: Labling Issues | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
handle-labeled: | |
if: github.repository == 'qwikifiers/qwik-ui' | |
runs-on: ubuntu-latest | |
steps: | |
- name: needs reproduction time limit | |
if: contains(github.event.label.name, 'needs reproduction') | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using a GitHub repository or [StackBlitz](https://qwik.new). | |
Issues marked with `STATUS-2: needs reproduction` will be automatically closed if they have no activity within 14 days. | |
Thanks π | |
- name: missing info time limit | |
if: contains(github.event.label.name, 'missing info') | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. Please provide the missing information requested above. | |
Issues marked with `STATUS-2: missing info` will be automatically closed if they have no activity within 14 days. | |
Thanks π |