Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion .github/scripts/bot-office-hours.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,15 @@ The Python SDK Team
EOF
)


echo "$PR_DATA" |
jq -r '
sort_by(.author.login)
| group_by(.author.login)
| .[]
| max_by(.createdAt)
| ((.author.login | endswith("[bot]")) as $is_bot
| "\(.number) \(.author.login) \($is_bot)"
| "\(.number) \(.author.login) \($is_bot)")
' |
while read -r PR_NUM AUTHOR IS_BOT; do
if [[ "$IS_BOT" == "true" ]]; then
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
- Enhance TopicInfo `__str__` method and tests with additional coverage, and update the format_key function in `key_format.py` to handle objects with a _to_proto method.

### Fixed
- Fixed Jq syntax of bot-office-hours.sh
- Respect `dry-run` input in `bot-community-calls.yml` workflow (#1425)
- Updated LinkBot regex in the GitHub Actions bot script to support "Closes" and "Resolves" keywords for improved PR body-link detection (#1465)
- Fixed CodeRabbit plan trigger workflow running multiple times when issues are created with multiple labels by switching to labeled event trigger only. (#1427)
Expand Down