Skip to content

Commit

Permalink
Update update helper for gh-helpers v0.1
Browse files Browse the repository at this point in the history
Handle breaking changes
  • Loading branch information
extremeheat committed Mar 9, 2024
1 parent cee858b commit 5a46905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/helper-bot/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs')
const cp = require('child_process')
const helper = require('gh-helpers')
const helper = require('gh-helpers')()
const pcManifestURL = 'https://launchermeta.mojang.com/mc/game/version_manifest.json'
const changelogURL = 'https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs'

Expand Down Expand Up @@ -51,7 +51,7 @@ async function updateManifestPC () {
const latestVersionIsSnapshot = latestVersionData.type !== 'release'

const title = `Support Minecraft PC ${latestVersion}`
const issueStatus = await helper.getIssueStatus(title)
const issueStatus = await helper.getIssueStatus({ title })

if (latestVersionIsSnapshot) {
// don't make issues for snapshots
Expand Down

0 comments on commit 5a46905

Please sign in to comment.