BOJ-EX: 5/19/2024, 4:42:10 PM #22
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: Update Markdown Performance | |
on: | |
push: | |
paths: | |
- "**.md" | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Get List of Not Filled Markdown Files | |
id: getfile | |
run: |- | |
echo "" > not_filled_files.txt | |
while IFS= read -r -d $'\0' file; do | |
if ! grep -q "### 성능 요약" "$file"; then | |
echo "$file" >> not_filled_files.txt | |
fi | |
done < <(find . -name "*.md" -print0) | |
- name: Update Performance in Markdown | |
uses: dltkdgns00/BOJ-action@main | |
with: | |
path: not_filled_files.txt | |
user_id: fkdl4878 | |
language_id: 1001 | |
- name: remove not_filled_files.txt | |
run: rm not_filled_files.txt | |
- name: Commit and push changes | |
run: >- | |
git config --local user.email | |
"github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add . | |
git status | |
if [[ -n "$(git status --porcelain)" ]]; then | |
git commit -m "Update performance details" | |
git push | |
else | |
echo "No changes to commit." | |
fi |