Merge pull request #373 from YunoHost-Apps/ci-auto-update-2024.9.1 #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create master promotion pull request | |
on: | |
# Allow to manually trigger the workflow | |
workflow_dispatch: | |
# Run it when when someone pushes to testing | |
push: | |
branches: | |
- testing | |
jobs: | |
masterPromotion: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
- name: Reset promotion branch | |
run: | | |
git fetch origin testing:testing | |
git reset --hard testing | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: master-promotion | |
title: 'Upgrade master from testing' | |
body: | | |
Upgrade master from testing |