Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build-pypilibrary-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
get-version:
name: Get version information job
uses: ./.github/workflows/get-version-task.yml
secrets: inherit

build-pypilibrary:
name: Build PyPI library project job
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/merge-bot-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,15 @@ jobs:
runs-on: ubuntu-latest
# Restrict to codegen PRs that originate from the App in this repository.
# Codegen always opens PRs against `main` from the `codegen` branch.
# Both the PR author AND the event actor must be the App: the author
# check stops human-opened PRs that happen to target the `codegen`
# branch from auto-merging; the actor check stops a maintainer
# pushing extra commits to the App's `codegen` branch (a
# `synchronize` event the human triggered) from auto-merging
# unintended changes through the App PR.
if: >-
github.event.pull_request.user.login == 'ptr727-codegen[bot]' &&
github.actor == 'ptr727-codegen[bot]' &&
github.event.pull_request.head.ref == 'codegen' &&
github.event.pull_request.base.ref == 'main' &&
github.event.pull_request.head.repo.full_name == github.repository
Expand Down
Loading