Changing the indentation #26
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: Embed code in README | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
embed-code: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # release changes require contents write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Markdown Code Embed | |
continue-on-error: true | |
run: | | |
#!/usr/bin/env bash | |
set -e | |
git clone https://github.com/ippie52/markdown_code_embed.git | |
python markdown_code_embed/mdce.py -b -f README.md | |
- name: Get all test, doc and src files that have changed | |
id: changed-files-yaml | |
uses: tj-actions/changed-files@v44 | |
with: | |
files_yaml: | | |
doc: | |
- '**.md' | |
- name: Push the README file with snippet | |
if: steps.changed-files-yaml.outputs.doc_any_changed == 'true' | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | |
set +e | |
git add README.md | |
git commit -m "README.md file augmented with snippet codes" | |
git push |