Update README with best runs content #31
Workflow file for this run
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 Best Runs | |
on: | |
push: | |
branches: | |
- test # Change this to your main branch name if different | |
jobs: | |
update_best_runs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Read Best Runs Content | |
id: read_best_runs | |
run: | | |
# Read the content of best_runs.md file | |
content=$(cat results/best_runs.md) | |
echo "$content" | |
- name: Update README.md | |
run: | | |
# Read the content of README.md | |
readme_content=$(cat README.md) | |
echo "Readme Content: $readme_content" | |
# Replace content between <!--START_SECTION:best_runs--> and <!--END_SECTION:best_runs--> | |
sed -i '/<!--START_SECTION:best_runs-->/, /<!--END_SECTION:best_runs-->/c\'"<!--START_SECTION:best_runs-->\n$content\n<!--END_SECTION:best_runs-->" README.md | |
# Check if there are changes in README.md | |
if ! git diff --quiet README.md; then | |
# Commit and push changes | |
git config --global user.name "Md Mijanur Rahman" | |
git config --global user.email "[email protected]" | |
git add README.md | |
git commit -m "Update best runs in README.md" | |
git push | |
else | |
echo "There are no changes in the README.md file" | |
fi |