Build: Fix correct sort order of merged pr's in cherrypick task (#19379)

This commit is contained in:
Marcus Efraimsson 2019-09-25 09:06:44 +02:00 committed by Torkel Ödegaard
parent 6be4a67a97
commit c4a03f482c

View File

@ -10,7 +10,10 @@ const cherryPickRunner: TaskRunner<CherryPickOptions> = async () => {
const res = await client.get('/issues', {
params: {
state: 'closed',
per_page: 100,
labels: 'cherry-pick needed',
sort: 'closed',
direction: 'asc',
},
});