Issue installing on FreeBSD due to an outdated package requirement of aspw. #372
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: Auto Labeler - Issues | |
on: | |
issues: | |
types: [opened] | |
permissions: | |
issues: write | |
jobs: | |
apply_triage_label_to_issues: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Apply Triage Label | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
const is_status_label = (label) => label.name.startsWith('Status: '); | |
if (context.payload.issue.labels.some(is_status_label)) { | |
console.log('Issue already has Status label, skipping...'); | |
return; | |
} | |
github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['Status: Needs Triage'] | |
}); |