-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
82 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Update README | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- name: Update README | ||
run: python update_list.py | ||
|
||
- id: last-commit-message | ||
run: echo "msg=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT | ||
- id: get-author-name | ||
run: echo "msg=$(git log -1 --pretty=%an)" >> $GITHUB_OUTPUT | ||
- id: get-author-email | ||
run: echo "msg=$(git log -1 --pretty=%aE)" >> $GITHUB_OUTPUT | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_user_name: ${{ steps.get-author-name.outputs.msg }} | ||
commit_user_email: ${{ steps.get-author-email.outputs.msg }} | ||
commit_author: ${{ steps.get-author-name.outputs.msg }} <${{ steps.get-author-email.outputs.msg }}> | ||
commit_message: ${{ steps.last-commit-message.outputs.msg }} | ||
commit_options: '--amend --no-edit' | ||
push_options: '--force' | ||
skip_fetch: true |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
"""Updates the list of websites in the README | ||
""" | ||
|
||
import glob | ||
|
||
files = sorted(glob.glob("./src/checkers/*.py", recursive=True)) | ||
with open('README.md', 'r', encoding='utf-8') as f: | ||
f_text = f.read() | ||
md = f_text.split("<!-- Websites start -->")[0] | ||
md += f"<!-- Websites start -->[{len(files)} total]\n" | ||
|
||
for file in files: | ||
file = file.replace("\\", "/") | ||
with open(file, "r") as f: | ||
link = f.readlines()[0].strip().removeprefix("\"\"\"") | ||
website = file.split("/")[-1].removesuffix(".py").replace("-", ".").capitalize() | ||
md += f"\n- [{website}]({link})" | ||
|
||
md += '\n\n<!-- Websites end -->' | ||
md += f_text.split("<!-- Websites end -->")[1] | ||
|
||
with open('README.md', 'w', encoding='utf-8') as f: | ||
f.write(md) |