We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 155816f commit 4db63c3Copy full SHA for 4db63c3
.github/actions/clippy-annotation-reporter/src/main.rs
@@ -157,13 +157,16 @@ async fn main() -> Result<()> {
157
};
158
159
// Set base branch (default to the PR's base branch or 'main')
160
- let base_branch = args.base_branch.unwrap_or_else(|| {
161
- if !github_ctx.base_ref.is_empty() {
162
- github_ctx.base_ref.clone()
163
- } else {
164
- "main".to_string()
165
- }
166
- });
+ // let base_branch = args.base_branch.unwrap_or_else(|| {
+ // if !github_ctx.base_ref.is_empty() {
+ // github_ctx.base_ref.clone()
+ // } else {
+ // "origin/main".to_string()
+ // }
+ // });
167
+
168
+ // TODO: EK - FIX THIS
169
+ let base_branch = "origin/main".to_owned();
170
171
// Set head branch (PR's head branch)
172
let head_branch = if !github_ctx.head_ref.is_empty() {
0 commit comments