-
-
Notifications
You must be signed in to change notification settings - Fork 235
feat(build): Add auto-detection of PR number from GitHub Actions #2722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
ebb2525
to
17ab728
Compare
|
||
/// Attempts to get the PR number from GitHub Actions environment variables. | ||
/// Returns the PR number if running in a GitHub Actions pull request environment. | ||
pub fn get_github_pr_number() -> Option<u32> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For this function, I didn't log a warning if we failed to fetch here because i figure there are so many different CI providers we'd be logging a warning every time. Until we cover a broader range of CI providers it doesn't make sense to log something. WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Debug logging should be fine, I'd recommend adding some logs around failure points, particularly in the like 258 block and any other early return points just to make debugging easier.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I second this, as debug logs are hidden by default. Default log level is WARN
. However, when folks report bugs, we ask them to set a log level of DEBUG
, as the debug logs, though verbose, often help identify the problem.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All logic for picking up PR number LGTM, deferring rest of review to @szokeasaurusrex for general CLI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some questions and comments
|
||
/// Attempts to get the PR number from GitHub Actions environment variables. | ||
/// Returns the PR number if running in a GitHub Actions pull request environment. | ||
pub fn get_github_pr_number() -> Option<u32> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I second this, as debug logs are hidden by default. Default log level is WARN
. However, when folks report bugs, we ask them to set a log level of DEBUG
, as the debug logs, though verbose, often help identify the problem.
src/utils/vcs.rs
Outdated
|
||
let pr_number_str = github_ref.strip_prefix("refs/pull/")?.split('/').next()?; | ||
|
||
let pr_number = pr_number_str.parse::<u32>().ok()?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Compiler can infer the type via the function signature, so we don't need the ::<u32>
here
let pr_number = pr_number_str.parse::<u32>().ok()?; | |
let pr_number = pr_number_str.parse().ok()?; |
src/utils/vcs.rs
Outdated
let github_ref = std::env::var("GITHUB_REF").ok()?; | ||
let event_name = std::env::var("GITHUB_EVENT_NAME").ok()?; | ||
|
||
if event_name != "pull_request" || !github_ref.starts_with("refs/pull/") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As strip_prefix
returns None
when the string does not start with the prefix, and the ?
immediately afterwards causes us to return None
in that case, explicitly checking starts_with
here is redundant.
if event_name != "pull_request" || !github_ref.starts_with("refs/pull/") { | |
if event_name != "pull_request" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, how would this work if someone is using a reusable workflow, called within a pull_request
workflow?
For instance, Sentry CLI's own CI workflow, which runs on pull requests, kicks off several reusable workflows, such as the Lint workflow. The Lint workflow's triggger is workflow_call
. Within that workflow, would the GITHUB_EVENT_NAME
be workflow_call
or pull_request
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a good point. I don’t think we should handle re-usable workflows. For those cases users can specify the PR number automatically.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok! I suppose we could always add support later if needed
src/commands/build/upload.rs
Outdated
#[test] | ||
fn test_get_github_pr_number() { | ||
std::env::set_var("GITHUB_EVENT_NAME", "pull_request"); | ||
std::env::set_var("GITHUB_REF", "refs/pull/123/merge"); | ||
|
||
let pr_number = get_github_pr_number(); | ||
assert_eq!(pr_number, Some(123)); | ||
|
||
std::env::set_var("GITHUB_EVENT_NAME", "push"); | ||
let pr_number = get_github_pr_number(); | ||
assert_eq!(pr_number, None); | ||
|
||
std::env::set_var("GITHUB_EVENT_NAME", "pull_request"); | ||
std::env::set_var("GITHUB_REF", "refs/heads/main"); | ||
let pr_number = get_github_pr_number(); | ||
assert_eq!(pr_number, None); | ||
|
||
std::env::remove_var("GITHUB_EVENT_NAME"); | ||
std::env::remove_var("GITHUB_REF"); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These tests belong in vcs.rs
, as get_github_pr_number
is defined there
src/commands/build/upload.rs
Outdated
.long("pr-number") | ||
.value_parser(clap::value_parser!(u32)) | ||
.help("The pull request number to use for the upload. If not provided, the current pull request number will be used.") | ||
.help("The pull request number to use for the upload. If not provided and running in a GitHub Actions environment, the PR number will be automatically detected from GitHub Actions environment variables.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would update this help text to clarify that the PR number is only detected when we are in a pull_request-triggered workflow. Also, as this string is a bit long, you should split it across lines, kinda like this (sadly, we would need a nightly version of rustfmt
to do this automatically):
.help("The pull request number to use for the upload. If not provided and running in a GitHub Actions environment, the PR number will be automatically detected from GitHub Actions environment variables.") | |
.help("The pull request number to use for the upload. If not provided and running \ | |
in a GitHub Actions environment, the PR number will be automatically detected from a \ | |
GitHub Actions environment variables.") |
When you end the line in a \
, Rust ignores the following newline and also all whitespace characters until the first non-whitespace character on the following line
aecb258
to
868934a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some minor things, looks good otherwise
646b99e
to
d424014
Compare
Ready for another review! |
When the --pr-number argument is not provided to the build upload command, the PR number is now automatically detected from GitHub Actions environment variables (GITHUB_EVENT_NAME and GITHUB_REF). This enhancement works by: - Checking if GITHUB_EVENT_NAME is "pull_request" - Parsing GITHUB_REF format "refs/pull/{pr_number}/merge" - Extracting the PR number and using it as the default value Includes comprehensive tests to verify the detection logic works correctly for various GitHub Actions scenarios. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Run cargo fmt to fix code formatting issues - Update help text in test snapshots to match new PR number auto-detection behavior - All build-related tests now pass except one unrelated flaky test
Fixes clippy warning by removing unnecessary closure wrapper around get_default_pr_number function call. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Rename function from get_default_pr_number to get_github_pr_number for clarity - Simplify nested conditional logic for better readability - Add qualifier to help text about GitHub Actions environment requirement - Move function from upload.rs to vcs.rs for better organization 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Update test expectations to match the improved help text that clarifies GitHub Actions environment requirement for PR auto-detection. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add debug logging for failure points in get_github_pr_number - Remove explicit type annotation from parse() call - Remove redundant starts_with check since strip_prefix handles it 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Split long help string across multiple lines using backslashes - Clarify that PR number detection only works in pull_request-triggered workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
The help text for --pr-number option was updated to be more specific about pull_request-triggered workflows, so the integration test snapshot needed to be updated to match. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Update the build-upload-help-not-macos.trycmd test snapshot to match the updated help text that specifies pull_request-triggered workflows. This should fix the failing tests on Linux, Windows, and macOS x86_64. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Remove explicit type annotation from get_one() call - Move test into proper mod tests block with #[cfg(test)] Addresses the final review comments on the PR. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
d424014
to
54f47bd
Compare
std::env::remove_var("GITHUB_EVENT_NAME"); | ||
std::env::remove_var("GITHUB_REF"); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Test Pollution from Global Environment Modifications
The test_get_github_pr_number
function modifies global environment variables (GITHUB_EVENT_NAME
, GITHUB_REF
) without isolation. This creates shared state, which can lead to race conditions and flaky test results when tests run in parallel. If the test panics, these variables may also remain set, affecting other tests.
Summary
build upload
command--pr-number
is not provided, automatically detects fromGITHUB_EVENT_NAME
andGITHUB_REF
Implementation Details
GITHUB_EVENT_NAME
== "pull_request" andGITHUB_REF
starts with "refs/pull/"GITHUB_REF
format:refs/pull/{pr_number}/merge
Test Plan
Resolves Linear issue EME-233
🤖 Generated with Claude Code