[Bug]: php.new install on x86 mac failing due to arm version of php being returned from x86 download link #525
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: 'Remove labels' | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
remove_label: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
const issue_num = context.issue.number; | |
const owner = context.repo.owner; | |
const repo = context.repo.repo; | |
const commentAuthor = context.payload.comment.user.login; | |
const issue = await github.rest.issues.get({ | |
owner, | |
repo, | |
issue_number: issue_num | |
}); | |
if (commentAuthor === issue.data.user.login) { | |
const labelsToRemove = ['needs more information', 'stale', 'Stale']; | |
for (const label of labelsToRemove) { | |
if (issue.data.labels.some(issueLabel => issueLabel.name === label)) { | |
await github.rest.issues.removeLabel({ | |
issue_number: issue_num, | |
owner, | |
repo, | |
name: label | |
}); | |
} | |
} | |
} |