blob: 0709fb5f04b4c0d9b6df05a8f1d3af4ad745ae7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Upstream: github.com/tzkhan/pr-update-action
name: "PR title check"
on: pull_request_target
jobs:
update_pr:
runs-on: ubuntu-latest
steps:
- uses: tzkhan/pr-update-action@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
base-branch-regex: '^(?!master).*$'
title-template: '[%basebranch%]'
title-prefix-space: true
|