Actual:
- There is no any output for this action
Expected:
- It would be great to return list of marked stale and deleted branches with authors.
- As a result, I will be able to post this list on some messenger, for example.
Just an example of output:
{
"stale_branches": [
{
"name": "stale-branch-1",
"author": "benny"
},
{
"name": "stale-branch-2",
"author": "anna"
}
],
"delete_branches": [
{
"name": "deleted-branch-1",
"author": "tonny"
},
{
"name": "deleted-branch-2",
"author": "benny"
}
]
}
Actual:
Expected:
Just an example of output:
{ "stale_branches": [ { "name": "stale-branch-1", "author": "benny" }, { "name": "stale-branch-2", "author": "anna" } ], "delete_branches": [ { "name": "deleted-branch-1", "author": "tonny" }, { "name": "deleted-branch-2", "author": "benny" } ] }