Skip to content

Commit

Permalink
feat: fix #22
Browse files Browse the repository at this point in the history
  • Loading branch information
kopardev committed Oct 1, 2024
1 parent 2458c98 commit ff54d9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/add_reponame_issue_label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:
add-label:
runs-on: ubuntu-latest
steps:

- name: add label
uses: actions/github-script@v6
with:
Expand Down
6 changes: 6 additions & 0 deletions assets/make_readme/get_recent_releases_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
from datetime import datetime
from dateutil.relativedelta import relativedelta

exclude_list = [
"nf-sandbox"
]

# Replace these with your GitHub token and organization name
GITHUB_TOKEN = os.getenv('GITHUB_TOKEN')
if not GITHUB_TOKEN:
Expand Down Expand Up @@ -68,6 +72,7 @@ def main():
open_issues_count = get_open_issues_count(repo['full_name'])
if latest_release:
repo_name = repo['name']
if repo_name in exclude_list: continue
# release_name = latest_release['name']
release_url = latest_release['html_url']
release_name = release_url.split('/')[-1]
Expand All @@ -90,6 +95,7 @@ def main():

# Print Markdown table
print(markdown_table)
print()

if __name__ == "__main__":
main()

0 comments on commit ff54d9f

Please sign in to comment.