mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
fix: only run backport for labelled pull requests (#31052)
This commit is contained in:
parent
c7d24321bf
commit
2ba343e138
1 changed files with 3 additions and 1 deletions
4
.github/workflows/backport.yml
vendored
4
.github/workflows/backport.yml
vendored
|
|
@ -9,7 +9,9 @@ permissions: {}
|
|||
jobs:
|
||||
backport:
|
||||
name: Backport pull request
|
||||
if: ${{ github.event.pull_request.merged }}
|
||||
if: >-
|
||||
${{ github.event.pull_request.merged
|
||||
&& contains(join(github.event.pull_request.labels.*.name, ' '), 'backport:release/') }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions: {}
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue