chore: Added cron job to check for upstream changes to vendored in code#5000
chore: Added cron job to check for upstream changes to vendored in code#5000
Conversation
Semver Impact of This PR⚪ None (no version bump detected) 📋 Changelog PreviewThis is how your changes will appear in the changelog. This PR will not appear in the changelog. 🤖 This preview updates automatically when you update the PR. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5000 +/- ##
==========================================
+ Coverage 73.90% 74.06% +0.16%
==========================================
Files 497 497
Lines 17957 17969 +12
Branches 3516 3517 +1
==========================================
+ Hits 13271 13309 +38
+ Misses 3825 3800 -25
+ Partials 861 860 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Backslash path separators inconsistent with all existing entries
- Replaced the three backslash-based
File Pathentries inSentry.slnxand.generated.NoMobile.slnxwith forward slashes to match existing solution path conventions and cross-platform resolution behavior.
- Replaced the three backslash-based
Or push these changes by commenting:
@cursor push acacc38d1e
Preview (acacc38d1e)
diff --git a/.generated.NoMobile.slnx b/.generated.NoMobile.slnx
--- a/.generated.NoMobile.slnx
+++ b/.generated.NoMobile.slnx
@@ -33,7 +33,7 @@
<File Path=".github/workflows/update-deps.yml" />
<File Path=".github/workflows/vulnerabilities.yml" />
<File Path=".github/workflows/playwright-blazor-wasm.yml" />
- <File Path=".github\workflows\watch-upstream.yml" />
+ <File Path=".github/workflows/watch-upstream.yml" />
</Folder>
<Folder Name="/benchmarks/">
<Project Path="benchmarks/Sentry.Benchmarks/Sentry.Benchmarks.csproj" />
diff --git a/Sentry.slnx b/Sentry.slnx
--- a/Sentry.slnx
+++ b/Sentry.slnx
@@ -33,7 +33,7 @@
<File Path=".github/workflows/update-deps.yml" />
<File Path=".github/workflows/vulnerabilities.yml" />
<File Path=".github/workflows/playwright-blazor-wasm.yml" />
- <File Path=".github\workflows\watch-upstream.yml" />
+ <File Path=".github/workflows/watch-upstream.yml" />
</Folder>
<Folder Name="/benchmarks/">
<Project Path="benchmarks/Sentry.Benchmarks/Sentry.Benchmarks.csproj" />
@@ -121,7 +121,7 @@
<File Path="scripts/update-cli.ps1" />
<File Path="scripts/update-java.ps1" />
<File Path="scripts/update-project-xml.ps1" />
- <File Path="scripts\watch-upstream.sh" />
+ <File Path="scripts/watch-upstream.sh" />
</Folder>
<Folder Name="/src/">
<File Path="src/Directory.Build.props" />This Bugbot Autofix run was free. To enable autofix for future PRs, go to the Cursor dashboard.


Resolves #4995
Notes for testing
All the github workflow does is run the script on a cron schedule, passing it some parameters. The script can be tested locally by running:
... that assumes you're logged into the github cli locally.
Important
The script will create one (and only one) issue for every upstream change it detects affecting the configured source tree. For testing, it created this issue:
... so it's not going to do anything again until we see a new commit affecting that source tree.
#skip-changelog