Rename item 27.md to item27.md #136
This file contains hidden or 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: Update Readme index | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| update-readme: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| - name: set up JDK 11 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '11' | |
| distribution: 'zulu' | |
| - name: Install Kotlin | |
| run: sudo apt-get install -y kotlin | |
| - name: Run the Kotlin script | |
| run: kotlinc -script scripts/UpdateReadMeIndex.kts | |
| - name: Commit changes | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add . | |
| git commit -m "나는 매시업에 종속된 사이버 돼지 커밋한다 삐리삐리 🤖" | |
| git push |