feat: Add PR welcome message system with uvx installation examples#721
Merged
Aaron ("AJ") Steers (aaronsteers) merged 4 commits intoJul 18, 2025
Merged
Conversation
- Add GitHub workflow to automatically comment on new PRs - Include community and internal welcome message templates - Provide uvx syntax for testing PyAirbyte from PR branches - Include links to #pyairbyte Slack channel and documentation - Add slash command documentation for PR automation Requested by @aaronsteers Co-Authored-By: AJ Steers <aj@airbyte.io>
Contributor
Author
|
Original prompt from AJ Steers: |
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
👋 Greetings, Airbyte Team Member!Here are some helpful tips and reminders for your convenience. Testing This PyAirbyte VersionYou can test this version of PyAirbyte using the following: # Run PyAirbyte CLI from this branch:
uvx 'git+https://github.com/airbytehq/PyAirbyte.git@devin/1752801376-add-pr-welcome-message' pyab --help
# Or use the full command name:
uvx 'git+https://github.com/airbytehq/PyAirbyte.git@devin/1752801376-add-pr-welcome-message' pyairbyte --help
# Install PyAirbyte from this branch for development:
pip install 'git+https://github.com/airbytehq/PyAirbyte.git@devin/1752801376-add-pr-welcome-message'Helpful ResourcesPR Slash CommandsAirbyte Maintainers can execute the following slash commands on your PR:
Community SupportQuestions? Join the #pyairbyte channel in our Slack workspace. |
- Replace hardcoded airbytehq/PyAirbyte with {{ .repo_name }} template variable
- Ensures uvx commands work correctly for community forks
- Addresses feedback from @aaronsteers on PR #721
Co-Authored-By: AJ Steers <aj@airbyte.io>
Aaron ("AJ") Steers (aaronsteers)
approved these changes
Jul 18, 2025
- Add --from flag to uvx commands as required when package name differs from CLI name - Addresses @aaronsteers feedback on PR #721 about incorrect uvx syntax - Follows PyAirbyte CLI documentation pattern: uvx --from=airbyte pyab --help Co-Authored-By: AJ Steers <aj@airbyte.io>
- Remove shorter 'pyab' syntax to save space in welcome message - Keep only the full 'pyairbyte' command as suggested by @aaronsteers - Addresses feedback on PR #721 about reducing template verbosity Co-Authored-By: AJ Steers <aj@airbyte.io>
👋 Greetings, Airbyte Team Member!Here are some helpful tips and reminders for your convenience. Testing This PyAirbyte VersionYou can test this version of PyAirbyte using the following: # Run PyAirbyte CLI from this branch:
uvx --from 'git+https://github.com/airbytehq/PyAirbyte.git@devin/1752801376-add-pr-welcome-message' pyairbyte --help
# Install PyAirbyte from this branch for development:
pip install 'git+https://github.com/airbytehq/PyAirbyte.git@devin/1752801376-add-pr-welcome-message'Helpful ResourcesPR Slash CommandsAirbyte Maintainers can execute the following slash commands on your PR:
Community SupportQuestions? Join the #pyairbyte channel in our Slack workspace. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add PR welcome message system with uvx installation examples
Summary
This PR implements an automated PR welcome message system for PyAirbyte, similar to the one used in the Python CDK. When new PRs are opened (especially from community forks), a GitHub workflow automatically posts a welcome comment with:
The implementation adds 3 new files:
Review & Testing Checklist for Human
uvx 'git+https://github.com/airbytehq/PyAirbyte.git@branch-name' pyab --help/fix-pr,/test-pr, and/poetry-lockcommands actually exist and work as described{{ .repo_name }}and{{ .branch_name }}variables populate correctly in the rendered messagesDiagram
%%{ init : { "theme" : "default" }}%% graph TD PR["New PR Created<br/>(Community Fork)"] --> Workflow["welcome-message.yml<br/>(GitHub Actions)"]:::major-edit Workflow --> Template["Template Selection<br/>(Fork vs Internal)"] Template --> CommunityTemplate[".github/pr-welcome-community.md<br/>(Community Contributors)"]:::major-edit Template --> InternalTemplate[".github/pr-welcome-internal.md<br/>(Team Members)"]:::major-edit CommunityTemplate --> Comment["Automated PR Comment<br/>(with uvx syntax)"] InternalTemplate --> Comment SlashCommands["existing slash_command_dispatch.yml<br/>(fix-pr, test-pr, poetry-lock)"]:::context --> Comment PythonCDK["airbyte-python-cdk<br/>welcome system<br/>(reference implementation)"]:::context --> Workflow subgraph Legend L1[Major Edit]:::major-edit L2[Minor Edit]:::minor-edit L3[Context/No Edit]:::context end classDef major-edit fill:#90EE90 classDef minor-edit fill:#87CEEB classDef context fill:#FFFFFFNotes
pyabandpyairbytealiases)Link to Devin session: https://app.devin.ai/sessions/8a2585a98e604164a973493586dbe063
Requested by: Aaron ("AJ") Steers (@aaronsteers)
Important
Auto-merge enabled.
This PR is set to merge automatically when all requirements are met.
Note
Auto-merge may have been disabled. Please check the PR status to confirm.