We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26e9f2 commit 045ccaaCopy full SHA for 045ccaa
create-pull-request.py
@@ -24,6 +24,10 @@ def ignore_event(github_event):
24
if deleted == "True":
25
print("Ignoring delete branch event.")
26
return True
27
+ ref = "{ref}".format(**github_event)
28
+ if not ref.startswith('refs/heads/'):
29
+ print("Ignoring events for tags and remotes.")
30
+ return True
31
return False
32
33
0 commit comments