Created
June 7, 2020 16:28
-
-
Save nashmaniac/488a25f45ef995fd0741f64cc2eb205d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import github | |
# extracting all the input from environments | |
title = os.environ['INPUT_TITLE'] | |
token = os.environ['INPUT_TOKEN'] | |
labels = os.environ['INPUT_LABELS'] | |
assignees = os.environ['INPUT_ASSIGNEES'] | |
body = os.environ['INPUT_BODY'] | |
# as I said GitHub expects labels and assignees as list but we supplied as string in yaml as list are not supposed in | |
# .yaml format | |
if labels and labels != '': | |
labels = labels.split(',') # splitting by , to make a list | |
else: | |
labels = [] # setting empty list if we get labels as '' or None | |
if assignees and assignees != '': | |
assignees = assignees.split(',') # splitting by , to make a list | |
else: | |
assignees = [] # setting empty list if we get labels as '' or None | |
github = github.Github(token) | |
# GITHUB_REPOSITORY is the repo name in owner/name format in Github Workflow | |
repo = github.get_repo(os.environ['GITHUB_REPOSITORY']) | |
issue = repo.create_issue( | |
title=title, | |
body=body, | |
assignees=assignees, | |
labels=labels | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment