-
Notifications
You must be signed in to change notification settings - Fork 0
fix(i18n): keep Spanish catalog in key parity #525
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
Changes from all commits
b914d39
12de116
1aafe8c
3b8191f
9b256d2
2644d57
352ee6e
5a50d74
ecc3f2f
63ba421
5739ab5
a637c85
33a929a
3b07dd0
95fc1a7
aa3d417
4d54933
de5d904
8334ec9
39defcc
6529d40
98b71ea
e22928f
f155ad7
68ba67b
d6d7f14
d1207c9
b0cf985
9bcdda8
4711ec3
207943a
50b56dc
1316081
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,38 +20,6 @@ pull_request_rules: | |
| {{ title }} (#{{ number }}) | ||
|
|
||
| Co-authored-by: {{ author }} | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WARNING: Three Mergify automation rules were removed without replacement The auto-merge rules for dependabot/Renovate PRs, bot housekeeping PRs, and the stale PR closure rule were removed. While the removed rules had invalid syntax, their removal eliminates repository automation for dependency updates, bot PRs, and stale PR cleanup. Consider fixing the syntax or explicitly documenting the intentional loss of these automations. Reply with |
||
| post_merge: | ||
| action: close | ||
|
|
||
| # Auto-merge dependabot/Renovate PRs when CI passes | ||
| - name: Auto-merge dependency updates | ||
| conditions: | ||
| - author=dependabot[bot] | renovate[bot] | ||
| - check-success=ci | ||
| - -conflict | ||
| - -closed | ||
| actions: | ||
| merge: | ||
| method: squash | ||
| commit_message_template: | | ||
| {{ title }} (#{{ number }}) | ||
|
|
||
| Co-authored-by: {{ author }} | ||
| post_merge: | ||
| action: close | ||
|
|
||
| # Auto-merge bot PRs (CI configs, formatting) when CI passes | ||
| - name: Auto-merge bot housekeeping PRs | ||
| conditions: | ||
| - author=trunk-io[bot] | mergify[bot] | github-actions[bot] | ||
| - check-success=ci | ||
| - check-success=lint | ||
| - -conflict | ||
| - -closed | ||
| actions: | ||
| merge: | ||
| method: squash | ||
|
|
||
| # Add reviewers based on changed paths | ||
| - name: Request review from team | ||
| conditions: | ||
|
|
@@ -61,7 +29,7 @@ pull_request_rules: | |
| request_reviews: | ||
| teams: | ||
| - phenotype/core | ||
| github_accounts: | ||
| users: | ||
| - KooshaPari | ||
|
|
||
| # Label PRs based on changed files | ||
|
|
@@ -97,20 +65,6 @@ pull_request_rules: | |
| add: | ||
| - typescript | ||
|
|
||
| # Close stale PRs after 30 days | ||
| - name: Close stale PRs | ||
| conditions: | ||
| - -closed | ||
| - -draft | ||
| - age>=30d | ||
| - "#review-requested=0" | ||
| actions: | ||
| comment: | ||
| message: > | ||
| This PR has been automatically closed after 30 days of inactivity. | ||
| Feel free to reopen if still relevant. | ||
| close: {} | ||
|
|
||
| # Warn on large PRs | ||
| - name: Warn on large PRs | ||
| conditions: | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
Preserve non-threshold audit failures.
scripts/scorecard_ci.pyreturns code 1 for a below-threshold score but code 2 for exceptions. This block treats both results as advisory, then parses an emptyscorecard-report.jsonafter an exception. The step fails later with a misleading JSON error, andscorecard-stderr.txtis not surfaced. Continue only for the expected threshold failure; propagate other exit codes and their diagnostics.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents