added clerk icon #144
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: Generate Readme | |
on: | |
pull_request: | |
branches: | |
- "**" | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.repository }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set executable permission for script | |
run: chmod +x ./.github/readme-format.sh | |
- name: Run readme format script | |
run: ./.github/readme-format.sh | |
- name: Commit changes | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
if [ -n "$(git status --porcelain)" ]; then | |
git add . | |
git commit -m "Format the readme file" | |
git push origin ${{ github.event.pull_request.head.ref }} | |
else | |
echo "no icon has been added, nothing to generate." | |
fi |