Quick settings can be changed from lockscreen even if it is disabled at settings #468
This file contains hidden or 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: Label issue | |
| on: | |
| issues: | |
| types: [edited, opened, reopened] | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| label: | |
| runs-on: ubuntu-24.04 | |
| if: | | |
| (github.event.action == 'edited' && contains(github.event.issue.labels.*.name, 'invalid')) || | |
| github.event.action == 'opened' || | |
| github.event.action == 'reopened' | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Parse issue body | |
| id: issue-parser | |
| uses: edumserrano/github-issue-forms-parser@f4e7864950f591c91ddd5215592484a4c789cebd | |
| continue-on-error: true | |
| with: | |
| template-filepath: '.github/ISSUE_TEMPLATE/bugreport.yml' | |
| issue-form-body: '${{ github.event.issue.body }}' | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Label issue | |
| run: ./label.py | |
| env: | |
| DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| GITHUB_REPOSITORY_NAME: ${{ github.event.repository.name }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GITHUB_WORKFLOW_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
| ISSUE_BODY: ${{ steps.issue-parser.outputs.parsed-issue }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} |