Update docs #11
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
# Update the docs using the rewrite-recipe-markdown-generator | |
name: Update docs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 9 * * *" | |
concurrency: | |
group: "update-docs" | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Update docs | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
# Shared setup | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- uses: gradle/actions/setup-gradle@v4 | |
# Run generator | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
repository: 'openrewrite/rewrite-recipe-markdown-generator' | |
path: 'rewrite-recipe-markdown-generator' | |
- name: Generate Markdown | |
run: ./gradlew ${{ env.GRADLE_SWITCHES }} latestVersionsMarkdown | |
working-directory: rewrite-recipe-markdown-generator | |
# Move generated markdown to docs/ | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
path: 'rewrite-docs' | |
- name: Move generated markdown to docs/ | |
run: mv rewrite-recipe-markdown-generator/build/docs/latest-versions-of-every-openrewrite-module.md rewrite-docs/docs/reference/latest-versions-of-every-openrewrite-module.md | |
# Commit and push changes | |
- name: configure-git-user | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "team-moderne[bot]" | |
- name: Commit and push | |
working-directory: rewrite-docs | |
run: | | |
export MSG="[Auto] Latest versions as of $(date +'%Y-%m-%d %H:%M')" | |
export DOC=docs/reference/latest-versions-of-every-openrewrite-module.md | |
export JS=src/plugins/latest-versions.js | |
git diff-index --quiet HEAD ${DOC} || (git commit --message "${MSG}" ${DOC} ${JS} && git push origin master) |