Update update_index.yaml #30
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 index.md with Markdown Links | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
#https://www.meziantou.net/executing-github-actions-jobs-or-steps-only-when-specific-files-change.htm | |
conditional_job_check_files: | |
runs-on: 'ubuntu-20.04' | |
# Declare outputs for next jobs | |
outputs: | |
docs_changed: ${{ steps.check_file_changed.outputs.docs_changed }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Checkout as many commits as needed for the diff | |
fetch-depth: 2 | |
- shell: pwsh | |
- id: check_file_changed | |
run: | | |
# Diff HEAD with the previous commit | |
$diff = git diff --name-only HEAD^ HEAD | |
# Check if a file under docs/ or with the .md extension has changed (added, modified, deleted) | |
$SourceDiff = $diff | Where-Object { $_ -match '^docs/' } | |
$HasDiff = $SourceDiff.Length -gt 0 | |
# Set the output named "docs_changed" | |
Write-Host "docs_changed=$HasDiff" >> "$GITHUB_OUTPUT" | |
# Run the job only with "docs_changed" equals "True" | |
conditional_update_index_job: | |
runs-on: 'ubuntu-20.04' | |
needs: [ conditional_job_check_files ] | |
if: ${{ needs.conditional_job_check_files.outputs.docs_changed == 'True' }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Extract Markdown links and update index.md | |
run: | | |
find docs -type f -name "*.md" > links.txt | |
awk -F/ '{gsub(/\.md$/, ""); gsub(/ /, "\\ "); printf "[%s](%s)\n", $NF, $0}' links.txt > tmp && mv tmp links.txt | |
awk 'BEGIN{p=1} /^## Notes/{print "## Notes"; while(getline < "links.txt") {print; print "\n"}; p=0} p' index.md > temp_index.md && mv temp_index.md index.md | |
rm links.txt | |
- name: commit | |
run: | | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config user.name "github-actions[bot]" | |
git commit -am "Automated index.md update" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |