mirror of
https://github.com/YunoHost-Apps/homeassistant_ynh.git
synced 2024-09-03 19:26:16 +02:00
Add new workflow
This commit is contained in:
parent
db53860738
commit
153d17c88d
1 changed files with 23 additions and 0 deletions
23
.github/workflows/update_master.yml
vendored
Normal file
23
.github/workflows/update_master.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
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@v3
|
||||
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@v5
|
||||
with:
|
||||
branch: master-promotion
|
Loading…
Reference in a new issue