This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
[Bug]: BSOD on Spotify #78
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: Issue Text | |
on: | |
issues: | |
types: [opened] | |
permissions: | |
contents: read | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Comment | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
body: Thank you for creating an issue. We will normally respond within 24 hours. | |
issue-number: ${{ github.event.issue.number }} | |
token: ${{ secrets.BOT }} | |
- uses: stefanbuck/github-issue-parser@v2 | |
id: issue-parser | |
with: | |
template-path: .github/ISSUE_TEMPLATE/bug_report.yml | |
- name: Set Browser Labels | |
uses: redhat-plumbers-in-action/advanced-issue-labeler@v2 | |
with: | |
issue-form: ${{ steps.issue-parser.outputs.jsonString }} | |
section: browsers | |
block-list: | | |
Other Browser | |
token: ${{ secrets.GITHUB_TOKEN }} |