Details
Details
- Reviewers
valerio.bozzolan - Group Reviewers
Libre BusTO CI/CD Blessed Reviewers - Maniphest Tasks
- T1281: Telegram bot: show Differential diff name (not last commit title)
- Commits
- R68:304f365d8644: Get the title of the revision instead of the commit
Diff Detail
Diff Detail
- Repository
- R68 Libre BusTO CI/CD stuff
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
| bin/publish-latest-branch-build.php | ||
|---|---|---|
| 248 | Nice! Small thing: line 250 may be null, should be something like: $revision_title = $result['data'][0]['fields']['revision_title'] ?? $git_commit_title; | |
| bin/publish-latest-branch-build.php | ||
|---|---|---|
| 248 | Quasi giusto, cambio il campo da 'revision_title' a 'title' e dovrebbe andare Esempio output {
"data": [
{
"id": 233,
"type": "DREV",
"phid": "PHID-DREV-qe4xbgymd757kx4dau5c",
"fields": {
"title": "Get the title of the revision instead of the commit",
"uri": "https://gitpull.it/D233",
"authorPHID": "PHID-USER-kur5pqwjhjcmjnjluwil",
"status": {
"value": "needs-review",
"name": "Needs Review",
"closed": false,
"color.ansi": "magenta"
},
"repositoryPHID": "PHID-REPO-2erlvbhmi3uloi4ubzph",
"diffPHID": "PHID-DIFF-ipybxgjc5fsru44fxlqj",
"summary": "",
"testPlan": "",
"isDraft": false,
"holdAsDraft": false,
"dateCreated": 1777371557,
"dateModified": 1777372193,
"policy": {
"view": "public",
"edit": "users"
}
},
"attachments": {}
}
],
"maps": {},
"query": {
"queryKey": null
},
"cursor": {
"limit": 100,
"after": null,
"before": null,
"order": null
}
} | |