Create pr-validation.yml
This commit is contained in:
parent
291417efc9
commit
8041173264
1 changed files with 19 additions and 0 deletions
19
.github/workflows/pr-validation.yml
vendored
Normal file
19
.github/workflows/pr-validation.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
name: PR Validation
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
pr-validation:
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
runs-on: ['self-hosted', 'pi']
|
||||
steps:
|
||||
- uses: TimonVS/pr-labeler-action@v5
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
configuration-path: .github/configs/pr-labeler-configuration.yml
|
||||
Loading…
Reference in a new issue