You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/stale-bot.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ jobs:
12
12
stale:
13
13
runs-on: ubuntu-latest
14
14
steps:
15
-
- uses: actions/stale@v9
15
+
- uses: actions/stale@v10
16
16
with:
17
17
stale-pr-message: 'This PR is stale because it has been open 25 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
18
18
close-pr-message: 'This PR was closed because it has been inactive for 5 days after being marked stale.'
Copy file name to clipboardExpand all lines: fern/apis/fai/openapi.json
+59-1Lines changed: 59 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4513,6 +4513,58 @@
4513
4513
"type": "string",
4514
4514
"title": "Diff",
4515
4515
"description": "The git diff to analyze for generating a commit message"
4516
+
},
4517
+
"language": {
4518
+
"anyOf": [
4519
+
{
4520
+
"type": "string"
4521
+
},
4522
+
{
4523
+
"type": "null"
4524
+
}
4525
+
],
4526
+
"title": "Language",
4527
+
"description": "The SDK programming language, e.g. 'typescript', 'python', 'java'. When provided, enables language-specific breaking change rules and behavioral analysis.",
4528
+
"default": null
4529
+
},
4530
+
"previous_version": {
4531
+
"anyOf": [
4532
+
{
4533
+
"type": "string"
4534
+
},
4535
+
{
4536
+
"type": "null"
4537
+
}
4538
+
],
4539
+
"title": "Previous Version",
4540
+
"description": "The current published version before this change, e.g. '1.2.3'. Provided for context only \u2014 not included in the commit message.",
4541
+
"default": null
4542
+
},
4543
+
"prior_changelog": {
4544
+
"anyOf": [
4545
+
{
4546
+
"type": "string"
4547
+
},
4548
+
{
4549
+
"type": "null"
4550
+
}
4551
+
],
4552
+
"title": "Prior Changelog",
4553
+
"description": "The last 3 changelog entries for this SDK. Used to match existing commit message style. Empty string or null if none.",
4554
+
"default": null
4555
+
},
4556
+
"spec_commit_message": {
4557
+
"anyOf": [
4558
+
{
4559
+
"type": "string"
4560
+
},
4561
+
{
4562
+
"type": "null"
4563
+
}
4564
+
],
4565
+
"title": "Spec Commit Message",
4566
+
"description": "The commit message from the API spec repository that triggered this SDK generation. Used as a hint for the intent of the change. Empty string or null if unavailable.",
4567
+
"default": null
4516
4568
}
4517
4569
},
4518
4570
"type": "object",
@@ -4528,6 +4580,12 @@
4528
4580
"title": "Message",
4529
4581
"description": "The AI-generated commit message summarizing the changes in the diff"
4530
4582
},
4583
+
"changelog_entry": {
4584
+
"type": "string",
4585
+
"title": "Changelog Entry",
4586
+
"description": "User-facing release note for CHANGELOG.md and GitHub Releases. Describes the impact on SDK consumers, not implementation details. Empty string for PATCH and NO_CHANGE.",
4587
+
"default": ""
4588
+
},
4531
4589
"version_bump": {
4532
4590
"$ref": "#/components/schemas/VersionBump",
4533
4591
"description": "The recommended semantic version bump: MAJOR for breaking changes, MINOR for new features, PATCH for bug fixes and other changes, NO_CHANGE for empty diffs"
0 commit comments