Bump upstream from 68d80e7 to b8c8d55
#206
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: | |
| if: github.event.pull_request.user.login != 'dependabot[bot]' | |
| uses: ./.github/workflows/pull-from-bazel-build.yml | |
| secrets: inherit | |
| with: | |
| is_internal_pr: ${{ github.event.pull_request.head.repo.full_name == github.repository }} |