diff options
author | Ed Santiago <santiago@redhat.com> | 2020-10-26 13:44:59 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2020-10-26 13:44:59 -0600 |
commit | e187423d2a6b42d20931a0d941572bad4b974f4e (patch) | |
tree | 9588fa0b74124be97cbe4f87568684d0a33e2dce /.github | |
parent | 3a62b4d6b70aaf68a443359319eb3fce7b101b87 (diff) | |
download | podman-e187423d2a6b42d20931a0d941572bad4b974f4e.tar.gz podman-e187423d2a6b42d20931a0d941572bad4b974f4e.tar.bz2 podman-e187423d2a6b42d20931a0d941572bad4b974f4e.zip |
Yet another iteration on PR title plugin
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>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pr-title.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml index 32d566288..e00b8465c 100644 --- a/.github/workflows/pr-title.yml +++ b/.github/workflows/pr-title.yml @@ -2,9 +2,10 @@ name: "PR title check" -on: pull_request_target - branches: - - "!master" # don't run it on master to prevent errors +on: + pull_request_target: + branches: + - "!master" # causes errors; reason unknown jobs: update_pr: |