This commit is contained in:
Stephan 2022-01-10 15:05:08 +01:00
parent 021137402f
commit 48eb74f956
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
// it's move to a project column for the first time - being assigned to the project
// and showing in project's backlog is not enough.
module.exports = ({github, context}) => {
module.exports = async ({github, context}) => {
const restapi = github.rest

View File

@ -43,4 +43,4 @@ jobs:
// current working directory.
const script = require('./.github/workflows/assign-milestones.js')
script({github, context})
await script({github, context})