Merge branch 'main' into bugfix/code-change4john
This commit is contained in:
commit
b7ea15a6b8
1 changed files with 12 additions and 0 deletions
12
.github/workflows/web-deploy.yml
vendored
12
.github/workflows/web-deploy.yml
vendored
|
|
@ -15,8 +15,20 @@ on:
|
|||
paths:
|
||||
- web/**
|
||||
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
|
||||
build:
|
||||
environment: dev
|
||||
needs: pr-validation
|
||||
if: always() && needs.pr-validation.result == 'success'
|
||||
runs-on: 'ubuntu-latest'
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
|
|||
Loading…
Reference in a new issue