Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.

Support labeled issues

Compare
Choose a tag to compare
@Ash258 Ash258 released this 22 Oct 19:47
· 14 commits to stable since this release

Now as soon as verify label is added into issue, appropriate action is executed

See readme for workflow file edit.

on:
  issues:
-  types: [opened]
+  types: [opened, labeled]
...
-      if: github.event.action == 'opened'
+      if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify'))