Skip to content

Rename item 27.md to item27.md #136

Rename item 27.md to item27.md

Rename item 27.md to item27.md #136

Workflow file for this run

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