Bump upstream from e0c1659 to 8866576
#9
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: Generate Documentation on PR | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| concurrency: | |
| group: generate-docs-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| generate-docs: | |
| # Skip Dependabot PRs (handled by auto-merge workflow) | |
| if: github.event.pull_request.user.login != 'dependabot[bot]' | |
| uses: ./.github/workflows/pull-from-bazel-build.yml | |
| secrets: inherit |