bug: 浏览器适配问题,在某些浏览器样式不生效,flyonui官网就有这问题,比如∶ios16的谷歌浏览器,夸克浏览器,内核版本参考截图版本 #5
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: "🧑🏻💻 Handle issue" | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
handle_new_issue: | |
if: github.event.action == 'opened' | |
runs-on: ubuntu-latest | |
name: Handle new issue | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Greet | |
uses: badsyntax/github-action-issue-comment@master | |
if: github.event_name == 'issues' | |
with: | |
id: "auto-reply" | |
action: "create-clean" | |
template: ".github/workflows/issue-reply.hbs" | |
issue-number: ${{ github.event.issue.number }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
template-inputs: | | |
{ | |
"user": "${{ github.event.issue.user.login }}" | |
} | |
# Find duplicates | |
- name: Find duplicates | |
uses: wow-actions/potential-duplicates@v1.0.9 | |
with: | |
GITHUB_TOKEN: ${{ github.token }} | |
label: "" | |
comment: > | |
Potential duplicates: {{#issues}} | |
- #{{ number }} _({{ accuracy }}% Match)_ | |
{{/issues}} |