Box element does not have component prop anymore even when used directly as an elemtent. #1420
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cleanup issue comment | |
on: | |
issues: | |
types: | |
- opened | |
permissions: {} | |
jobs: | |
issue_cleanup: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 | |
with: | |
script: | | |
const issue = await github.rest.issues.get({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
}) | |
const lines = issue.data.body.split('\n') | |
const _ = extractInputSection(lines, 'Latest version') | |
const searchKeywords = extractInputSection(lines, 'Search keywords') | |
const orderID = extractInputSection(lines, 'Order ID or Support key') | |
lines.push('') | |
lines.push('**Search keywords**: ' + searchKeywords) | |
if (orderID !== '' && orderID !== '_No response_') { | |
lines.push('**Order ID**: ' + orderID) | |
} | |
const body = lines.join('\n') | |
await github.rest.issues.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
body, | |
}) | |
function extractInputSection(lines, title) { | |
const index = lines.findIndex(line => line.startsWith('###') && line.includes(title)) | |
if (index === -1) { | |
return '' | |
} | |
return lines.splice(index, 4)[2].trim() | |
} |