Фиксы линтера (#122)

* linterfixes

* untriaged

* untriaged

* somefixes
This commit is contained in:
Zekins
2025-08-02 16:01:35 +03:00
committed by GitHub
parent 9c49ddabdb
commit c3a0fb1af8
73 changed files with 353 additions and 466 deletions

View File

@@ -10,10 +10,17 @@ jobs:
add_label:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
pull-requests: write
steps:
- uses: actions-ecosystem/action-add-labels@v1
if: join(github.event.issue.labels) == ''
with:
labels: "S: Untriaged"
- name: Add label to issue
if: github.event_name == 'issues' && join(github.event.issue.labels.*.name) == ''
uses: actions-ecosystem/action-add-labels@v1
with:
labels: "S: Untriaged"
- name: Add label to pull request
if: github.event_name == 'pull_request_target' && join(github.event.pull_request.labels.*.name) == ''
uses: actions-ecosystem/action-add-labels@v1
with:
labels: "S: Untriaged"