mirror of
https://github.com/containers/podman.git
synced 2026-02-18 23:14:49 -05:00
PR #8147 made things worse: it's not valid YAML. This at least is valid YAML. I have no idea if it yields the desired result, and we won't even know until it gets merged, but at least it won't cause fatal syntax errors. Signed-off-by: Ed Santiago <santiago@redhat.com>
20 lines
442 B
YAML
20 lines
442 B
YAML
# Upstream: github.com/tzkhan/pr-update-action
|
|
|
|
name: "PR title check"
|
|
|
|
on:
|
|
pull_request_target:
|
|
branches:
|
|
- "!master" # causes errors; reason unknown
|
|
|
|
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
|