Skip to content

Commit

Permalink
Merge pull request #94 from github/strip-spaces
Browse files Browse the repository at this point in the history
strip out spaces for people like me that dont follow the directions
  • Loading branch information
zkoppert authored Mar 10, 2024
2 parents 519672f + 408fd2b commit ba2f486
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stale_repos.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ def get_inactive_repos(github_connection, inactive_days_threshold, organization)

exempt_topics = os.getenv("EXEMPT_TOPICS")
if exempt_topics:
exempt_topics = exempt_topics.split(",")
exempt_topics = exempt_topics.replace(" ", "").split(",")
print(f"Exempt topics: {exempt_topics}")

exempt_repos = os.getenv("EXEMPT_REPOS")
if exempt_repos:
exempt_repos = exempt_repos.split(",")
exempt_repos = exempt_repos.replace(" ", "").split(",")
print(f"Exempt repos: {exempt_repos}")

for repo in repos:
Expand Down

0 comments on commit ba2f486

Please sign in to comment.