Merge branch 'master' into onramp-rework-env #43
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: Generate Services Markdown | |
on: | |
push: | |
paths: | |
- 'services-available/**/*.yml' | |
- '.github/workflows/generate-services-markdown.yml' | |
- '.github/scripts/generate-services-markdown.yml' | |
jobs: | |
generate-services-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate Services Markdown | |
run: | | |
.github/scripts/generate-services-markdown.sh | |
- name: Commit Services Markdown | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
git add ./SERVICES.md | |
git commit -m "Update services.md" || echo "No changes to commit" | |
git push |