Compare commits
10 Commits
5b3d57a3fb
...
main
Author | SHA1 | Date | |
---|---|---|---|
78a897fa66 | |||
8880332d51 | |||
095dc9afe9 | |||
f7417db29b | |||
1ad184b81f | |||
0c7b4ebb53 | |||
db29e78093 | |||
606dd2f9ce | |||
c17e56ee2d | |||
9ac7dd29e3 |
32
lib/gitea.py
32
lib/gitea.py
@@ -103,14 +103,11 @@ class Gitea:
|
||||
|
||||
def get_issues(
|
||||
self,
|
||||
owner: str,
|
||||
repository: str,
|
||||
):
|
||||
path = f"/repos/{owner}/{repository}/issues"
|
||||
params = {"state": "open"}
|
||||
path = f"/repos/{repository}/issues"
|
||||
params = {"state": "open", "type": "issues"}
|
||||
self.logger.debug(f">> Path used to get issues: {path}")
|
||||
self.logger.debug(f">> Owner: {owner}")
|
||||
self.logger.debug(f">> Repository: {repository}")
|
||||
|
||||
result = self.requests_get(path, params)
|
||||
self.logger.debug(">> Gitea response: %s", result)
|
||||
@@ -118,53 +115,46 @@ class Gitea:
|
||||
|
||||
def get_pull_requests(
|
||||
self,
|
||||
owner: str,
|
||||
repository: str,
|
||||
):
|
||||
path = f"/repos/{owner}/{repository}/pulls"
|
||||
path = f"/repos/{repository}/pulls"
|
||||
params = {"state": "open"}
|
||||
self.logger.debug(f">> Path used to get pull requests: {path}")
|
||||
self.logger.debug(f">> Owner: {owner}")
|
||||
self.logger.debug(f">> Repository: {repository}")
|
||||
|
||||
result = self.requests_get(path, params)
|
||||
self.logger.debug(">> Gitea response: %s", result)
|
||||
return result
|
||||
|
||||
def update_issue_labels(
|
||||
def post_issue_labels(
|
||||
self,
|
||||
issue_number: int,
|
||||
labels: list,
|
||||
owner: str,
|
||||
repository: str,
|
||||
):
|
||||
path = f"/repos/{owner}/{repository}/issues/{issue_number}/labels"
|
||||
data = {"labels": labels}
|
||||
path = f"/repos/{repository}/issues/{issue_number}/labels"
|
||||
params = {"labels": [labels]}
|
||||
self.logger.debug(f">> Path used to update issue label: {path}")
|
||||
|
||||
result = self.requests_post(path, data)
|
||||
result = self.requests_post(path, params)
|
||||
if "id" in result:
|
||||
self.logger.info(">> Successfully added label")
|
||||
self.logger.debug(">> Gitea response: %s", result)
|
||||
else:
|
||||
self.logger.error(result["message"])
|
||||
# raise Exception("User not created... (gitea: %s)" % result["message"])
|
||||
|
||||
def update_pull_request_labels(
|
||||
def post_pull_request_labels(
|
||||
self,
|
||||
pull_request_number: int,
|
||||
labels: list,
|
||||
owner: str,
|
||||
repository: str,
|
||||
):
|
||||
path = f"/repos/{owner}/{repository}/pulls/{pull_request_number}/labels"
|
||||
data = {"labels": labels}
|
||||
path = f"/repos/{repository}/pulls/{pull_request_number}"
|
||||
params = {"labels": [labels]}
|
||||
self.logger.debug(f">> Path used to update pull request labels: {path}")
|
||||
|
||||
result = self.requests_post(path, data)
|
||||
result = self.requests_post(path, params)
|
||||
if "id" in result:
|
||||
self.logger.info(">> Successfully added label")
|
||||
self.logger.debug(">> Gitea response: %s", result)
|
||||
else:
|
||||
self.logger.error(result["message"])
|
||||
# raise Exception("User not created... (gitea: %s)" % result["message"])
|
||||
|
@@ -14,7 +14,6 @@ def main():
|
||||
# --- Get configuration from environment variables ---
|
||||
try:
|
||||
instance_url = os.environ["INSTANCE_URL"].rstrip("/")
|
||||
owner = os.environ["OWNER"]
|
||||
repository = os.environ["REPOSITORY"]
|
||||
token = os.environ["TOKEN"]
|
||||
log_level = os.environ.get("LOG_LEVEL", "INFO").upper()
|
||||
@@ -50,7 +49,7 @@ def main():
|
||||
|
||||
# --- Fetch issues ---
|
||||
logger.info(f">> Fetching issues ...")
|
||||
issues = gitea.get_issues(owner=owner, repository=repository)
|
||||
issues = gitea.get_issues(repository=repository)
|
||||
|
||||
# --- Process issues ---
|
||||
if len(issues) < 1:
|
||||
@@ -67,23 +66,22 @@ def main():
|
||||
days=int(issue_stale_days)
|
||||
)
|
||||
issue_current_labels = {label["name"] for label in issue.get("labels", [])}
|
||||
issue_update_labels = list(issue_current_labels)
|
||||
logger.debug(f">> Issue has the following labels: {issue_current_labels}")
|
||||
|
||||
# -- Check required --
|
||||
if (not issue_required_tag == None) and (
|
||||
not int(issue_required_tag) in issue_current_labels
|
||||
not issue_required_tag in issue_current_labels
|
||||
):
|
||||
logger.debug(
|
||||
logger.info(
|
||||
f">> Skipping issue #{issue["number"]} because it does not have the required ('{issue_required_tag}') tag"
|
||||
)
|
||||
continue
|
||||
|
||||
# -- Check exclude --
|
||||
if (not issue_exclude_tag == None) and (
|
||||
int(issue_exclude_tag) in issue_current_labels
|
||||
issue_exclude_tag in issue_current_labels
|
||||
):
|
||||
logger.debug(
|
||||
logger.info(
|
||||
f">> Skipping issue #{issue["number"]} because it has the exclude ('{issue_exclude_tag}') tag"
|
||||
)
|
||||
continue
|
||||
@@ -97,7 +95,7 @@ def main():
|
||||
)
|
||||
|
||||
if issue_stale_tag in issue_current_labels:
|
||||
logger.debug(
|
||||
logger.info(
|
||||
f">> Skipping issue #{issue["number"]} because it already has the stale ('{issue_stale_tag}') tag"
|
||||
)
|
||||
continue
|
||||
@@ -105,12 +103,10 @@ def main():
|
||||
logger.info(
|
||||
f">> Will tag issue #{issue["number"]} with '{issue_stale_tag}'"
|
||||
)
|
||||
issue_update_labels.add(issue_stale_tag)
|
||||
|
||||
gitea.update_issue_labels(
|
||||
gitea.post_issue_labels(
|
||||
issue_number=issue["number"],
|
||||
labels=issue_update_labels,
|
||||
owner=owner,
|
||||
labels=issue_stale_tag,
|
||||
repository=repository,
|
||||
)
|
||||
|
||||
@@ -119,7 +115,7 @@ def main():
|
||||
logger.info(">> Finished processing issues")
|
||||
|
||||
# --- Fetch pull requests ---
|
||||
pull_requests = gitea.get_pull_requests(owner=owner, repository=repository)
|
||||
pull_requests = gitea.get_pull_requests(repository=repository)
|
||||
|
||||
# --- Process pull requests ---
|
||||
if len(pull_requests) < 1:
|
||||
@@ -138,25 +134,24 @@ def main():
|
||||
pull_request_current_labels = {
|
||||
label["name"] for label in pull_request.get("labels", [])
|
||||
}
|
||||
pull_request_update_labels = list(pull_request_current_labels)
|
||||
logger.debug(
|
||||
f">> Pull request has the following labels: {issue_current_labels}"
|
||||
f">> Pull request has the following labels: {pull_request_current_labels}"
|
||||
)
|
||||
|
||||
# -- Check required --
|
||||
if (not pull_request_required_tag == None) and (
|
||||
not int(pull_request_required_tag) in pull_request_current_labels
|
||||
not pull_request_required_tag in pull_request_current_labels
|
||||
):
|
||||
logger.debug(
|
||||
logger.info(
|
||||
f">> Skipping pull request #{pull_request["number"]} because it does not have the required ('{pull_request_required_tag}') tag"
|
||||
)
|
||||
continue
|
||||
|
||||
# -- Check exclude --
|
||||
if (not pull_request_exclude_tag == None) and (
|
||||
int(pull_request_exclude_tag) in pull_request_current_labels
|
||||
pull_request_exclude_tag in pull_request_current_labels
|
||||
):
|
||||
logger.debug(
|
||||
logger.info(
|
||||
f">> Skipping pull request #{pull_request["number"]} because it has the exclude ('{pull_request_exclude_tag}') tag"
|
||||
)
|
||||
continue
|
||||
@@ -170,7 +165,7 @@ def main():
|
||||
)
|
||||
|
||||
if pull_request_stale_tag in pull_request_current_labels:
|
||||
logger.debug(
|
||||
logger.info(
|
||||
f">> Skipping pull request #{pull_request["number"]} because it already has the stale ('{pull_request_stale_tag}') tag"
|
||||
)
|
||||
continue
|
||||
@@ -178,16 +173,14 @@ def main():
|
||||
logger.info(
|
||||
f">> Will tag pull request #{pull_request["number"]} with '{pull_request_stale_tag}'"
|
||||
)
|
||||
pull_request_update_labels.add(pull_request_stale_tag)
|
||||
|
||||
gitea.update_pull_requests(
|
||||
gitea.post_pull_request_labels(
|
||||
pull_request_number=pull_request["number"],
|
||||
labels=pull_request_update_labels,
|
||||
owner=owner,
|
||||
labels=pull_request_stale_tag,
|
||||
repository=repository,
|
||||
)
|
||||
|
||||
logger.info(f">> Finished pull request #{issue["number"]}")
|
||||
logger.info(f">> Finished pull request #{pull_request["number"]}")
|
||||
|
||||
logger.info(">> Finished processing pull requests")
|
||||
|
||||
|
Reference in New Issue
Block a user