Skip to content

Upmerge PR

Upmerge PR #128

Workflow file for this run

name: Upmerge PR
on:
schedule:
-
cron: "0 3 * * *"
workflow_dispatch: ~
permissions:
contents: write
pull-requests: write
jobs:
upmerge:
runs-on: ubuntu-latest
if: github.repository == 'Sylius/WishlistPlugin'
name: "Upmerge PR"
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
include:
-
base_branch: "1.0"
target_branch: "1.1"
-
base_branch: "1.1"
target_branch: "2.0"
steps:
-
uses: actions/checkout@v4
with:
ref: ${{ matrix.target_branch }}
-
uses: SyliusLabs/UpmergeAction@v1
with:
base_branch: ${{ matrix.base_branch }}
target_branch: ${{ matrix.target_branch }}
token: ${{ secrets.SYLIUS_BOT_PAT }}