Merge branch 'master' into 3.17

This commit is contained in:
aptalca 2023-03-08 12:20:59 -05:00
commit 943e804265
No known key found for this signature in database
GPG Key ID: BE36CFFB9FD85548
2 changed files with 21 additions and 0 deletions

12
.github/workflows/call_invalid_helper.yml vendored Executable file
View File

@ -0,0 +1,12 @@
name: Comment on invalid interaction
on:
issues:
types:
- labeled
jobs:
add-comment-on-invalid:
if: github.event.label.name == 'invalid'
permissions:
issues: write
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
secrets: inherit

9
.github/workflows/permissions.yml vendored Executable file
View File

@ -0,0 +1,9 @@
name: Permission check
on:
pull_request:
paths:
- '**/run'
- '**/finish'
jobs:
permission_check:
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1