Skip to content

Commit

Permalink
remove debugging input
Browse files Browse the repository at this point in the history
  • Loading branch information
gwutrexl committed Oct 21, 2021
1 parent 71008c1 commit 9760ba5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/AutoInviteToOrgByNewIssue.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
file = open(os.environ['GITHUB_EVENT_PATH'])
data = json.load(file)

print("Data:")
print(data)
# print("Data:")
# print(data)

COMMENT = data["issue"]["title"]
USERNAME = data["issue"]["user"]["login"]

print("COMMENT:")
print(COMMENT)
print("USERNAME:")
print(USERNAME)
# print("COMMENT:")
# print(COMMENT)
# print("USERNAME:")
# print(USERNAME)

if "RaiseHigh @" not in COMMENT and "RaiseHigh me" not in COMMENT:
sys.exit()
Expand Down

0 comments on commit 9760ba5

Please sign in to comment.