From e187423d2a6b42d20931a0d941572bad4b974f4e Mon Sep 17 00:00:00 2001
From: Ed Santiago <santiago@redhat.com>
Date: Mon, 26 Oct 2020 13:44:59 -0600
Subject: 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>
---
 .github/workflows/pr-title.yml | 7 ++++---
 1 file 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:
-- 
cgit v1.2.3-54-g00ecf