chore: migrate workflow helper scripts for #320 phase B #160
Workflow file for this run
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: Docs Bump | |
| # We do not want to trigger the workflow for pushes to *any* branch because this | |
| # would trigger our jobs twice on pull requests (once from "push" event and once | |
| # from "pull_request->synchronize") | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| docs_bump: | |
| name: "Docs Bump" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install yq | |
| uses: mikefarah/yq@v4 | |
| - name: Version Bump | |
| run: ./scripts/workflows/docs-bump_docs-bump_version-bump.sh | |
| - name: CHANGELOG Bump | |
| run: ./scripts/workflows/docs-bump_docs-bump_CHANGELOG-bump.sh |