Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Nov 20, 2023
1 parent ba733ac commit e986036
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/sitemaps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ jobs:
print(f'Found {len(lang_urls)} in {sitemap} ({len(all_urls)} total)')
# Filter URLs based on modified files
urls_to_submit = filter_modified_urls(all_urls, os.environ['MODIFIED_FILES'].split())
files = os.environ['MODIFIED_FILES'].split()
print(files)
urls_to_submit = filter_modified_urls(all_urls, files)
print(f'Filtered {len(urls_to_submit)} updated pages to submit)')
# Submit filtered URLs
Expand Down

0 comments on commit e986036

Please sign in to comment.