[add] Lark notification actions #31
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: Template Repository initialization | |
on: | |
push: | |
branches: | |
- master | |
env: | |
TEMPLATE_OWNER: idea2app | |
TEMPLATE_NAME: REST-Node-ts | |
REPOSITORY_OWNER: ${{ github.repository_owner }} | |
REPOSITORY_NAME: ${{ github.event.repository.name }} | |
jobs: | |
replace-repository-name: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
actions: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: transform Repository variables to lower case | |
run: | | |
echo "REPOSITORY_OWNER=${REPOSITORY_OWNER@L}" >> "${GITHUB_ENV}" | |
echo "REPOSITORY_NAME=${REPOSITORY_NAME@L}" >> "${GITHUB_ENV}" | |
- if: github.repository != format('{0}/{1}', env.TEMPLATE_OWNER, env.TEMPLATE_NAME) | |
run: | | |
sh .github/workflows/replace-repository-name.sh \ | |
${{ env.TEMPLATE_OWNER }} ${{ env.TEMPLATE_NAME }} \ | |
${{ env.REPOSITORY_OWNER }} ${{ env.REPOSITORY_NAME }} | |
git checkout -- .github/workflows/init-template.yml | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: '[fix] replace Repository Name' |