-
Notifications
You must be signed in to change notification settings - Fork 23
36 lines (33 loc) · 1.25 KB
/
update_master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: 🏹 Update Master (PR)
on:
workflow_dispatch:
jobs:
update_master_and_create_pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Reset promotion branch
run: |
git fetch origin edge:edge
git reset --hard edge
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
branch: update-master-from-edge
title: "chore: update master"
body: |
This PR was created Automatically.
Please approve and squash-merge it.
### IMPORTANT:
Before merging, make sure all the changes are listed in the squash-commit footer.
Format must be plain conventional-commit, one per line.
No `*` bullets and no `----` comments are allowed.
Commit footer format for release-please changelog ([docs](https://github.com/googleapis/release-please/tree/main?tab=readme-ov-file#what-if-my-pr-contains-multiple-fixes-or-features)):
```
fix: av1 support (#557)
fix: types definitions (#565)
feat: kareoke style subtitles (#563)
fix: allowUsageReport (#569)
```