From 5b08122cd950346352ccc25a8080509525c8ae81 Mon Sep 17 00:00:00 2001 From: ccostan Date: Sat, 26 Sep 2020 13:26:32 -0400 Subject: [PATCH] Adding more condition code to #813 --- config/packages/github.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/packages/github.yaml b/config/packages/github.yaml index efd52c93..6873188b 100755 --- a/config/packages/github.yaml +++ b/config/packages/github.yaml @@ -55,6 +55,8 @@ automation: value_template: >- {%- if trigger.json.action == "created" or "closed" or "opened" or "reopened" %} True + {%- elif trigger.json.action != "edited" or "labeled" or "unlabeled" or "pinned" or "unpinned" %} + False {%- else -%} False {%- endif -%}