Feat/improve action cleanup (#8) #14
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
name: Repository Cleanup | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
# Prevent the action to run on the template repository | |
if: github.event.repository.name != 'template_python' | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Make script executable | |
run: chmod +x script/rename.sh | |
- name: Cleanup README | |
run: | | |
CAPITALIZED_NAME=$(echo "${{ github.event.repository.name }}" | sed -E 's/([a-z0-9])([A-Z])/\1 \2/g; s/[-_]/ /g' | tr '[:lower:] [:upper:]') | |
./script/rename.sh -f README.md --find "PYTHON TEMPLATE" --replace-with "${CAPITALIZED_NAME}" | |
./script/rename.sh -f README.md --from 12 --to 15 --replace-with "\\" | |
./script/rename.sh -f README.md --find "Anatole-DC/template_python" --replace-with "${GITHUB_REPOSITORY}" | |
./script/rename.sh -f README.md --find "template_python" --replace-with ${{ github.event.repository.name }} | |
./script/rename.sh -f README.md --find "Anatole de Chauveron" --replace-with "${GITHUB_REPOSITORY_OWNER}" | |
- name: Cleanup code | |
run: | | |
SNAKE_CASE_NAME=$(echo "${{ github.event.repository.name }}" | sed -E 's/([a-z0-9])([A-Z])/\1 \2/g; s/[-_]/_/g' | tr '[:upper:] [:lower:]') | |
./script/rename.sh -f examples/main.py --find "python_template" --replace-with "${SNAKE_CASE_NAME}" | |
mv python_template/ "${SNAKE_CASE_NAME}/" | |
- name: Cleanup configs | |
run: | | |
SNAKE_CASE_NAME=$(echo "${{ github.event.repository.name }}" | sed -E 's/([a-z0-9])([A-Z])/\1 \2/g; s/[-_]/_/g' | tr '[:upper:] [:lower:]') | |
./script/rename.sh -f pyproject.toml -f .vscode/launch.json -f Dockerfile --find "python_template" --replace-with "${SNAKE_CASE_NAME}" | |
./script/rename.sh -f pyproject.toml --find "Your Name" --replace-with "${GITHUB_REPOSITORY_OWNER}" | |
- name: Update project description | |
run: | | |
BASE_TEMPLATE_REPOSITORY_DESCRIPTION=$(curl https://api.github.com/repos/Anatole-DC/template_python 2>/dev/null | grep description | sed 's/"description": "\(.*\)",/\1/') | |
REPOSITORY_DESCRIPTION=$(curl https://api.github.com/repos/${GITHUB_REPOSITORY} 2>/dev/null | grep description | sed 's/"description": "\(.*\)",/\1/') | |
./script/rename.sh -f README.md -f pyproject.toml --find "${BASE_TEMPLATE_REPOSITORY_DESCRIPTION}" --replace-with "${REPOSITORY_DESCRIPTION}" | |
# - name: Remove cleanup files | |
# run : | | |
# rm -fr .github/workflows/cleanup.yml | |
# rm -fr script/ | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: ":truck: Automatic template placeholder cleanup" | |
create_branch: false |