. t move add_scrubber example to snippet #482
This file contains hidden or 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: Formatting and Snippets | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
format_and_snippets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run black | |
run: | | |
./format_code.sh | |
- name: Run MarkdownSnippets | |
run: | | |
./run_mdsnippets.sh | |
shell: bash | |
- name: Git Commit and Push | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: "${secrets.GITHUB_TOKEN}" | |
commit-message: ". d format and update markdown snippets" | |
rebase: 'true' | |
push-branch: 'main' | |
name: github actions | |
email: [email protected] | |