Skip to content

Commit

Permalink
fix: use current branch templates for PR runs
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Mar 2, 2024
1 parent 60372e7 commit 6675835
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/issues.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ module.exports.stringifiedIssueTemplate = async function stringifiedIssueTemplat
const response = await client.repos.getContents({
owner: options.owner,
repo: options.repo,
path: `.github/ISSUE_TEMPLATE/${options.template}`
path: `.github/ISSUE_TEMPLATE/${options.template}`,
ref: options.ref || 'main'
})

// check that we're not trying to parse a file that doesn't exist. If we are, throw.
Expand Down
4 changes: 3 additions & 1 deletion run.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,11 @@ const conversions = require('./lib/conversions')
// default to the user-provided template
if (issueTemplate) {
try {
console.log(github.context)
const userProvidedIssueTemplate = await issues.stringifiedIssueTemplate(client, {
...repo,
template: issueTemplate
template: issueTemplate,
// ref: ${{ github.context.event.repository.default_branch }}
})
template = conversions.convert(userProvidedIssueTemplate)
template = ejs.compile(userProvidedIssueTemplate)
Expand Down

0 comments on commit 6675835

Please sign in to comment.