Merge pull request #147 from Marcono1234/fix-github-workflow

Fix GitHub workflow not closing Minecraft issues
This commit is contained in:
Martijn Verburg 2021-10-15 00:07:04 +01:00 коммит произвёл GitHub
Родитель d3f40a001e 053335ba5e
Коммит e1956fc4ec
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

4
.github/workflows/minecraft-crash.yml поставляемый
Просмотреть файл

@ -129,10 +129,10 @@ jobs:
})
// We will close any Minecraft-related issue automatically.
github.rest.issues.update({
github.issues.update({
owner: owner,
repo: repo,
issue_number: inputs.issueNumber,
issue_number: issueNumber,
state: 'closed'
})
}