fix: allow workflows to be empty or undefined #146
Workflow file for this run
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: triage | |
on: | |
pull_request: | |
types: | |
- opened | |
issues: | |
types: | |
- opened | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
debug-context: | |
runs-on: ubuntu-latest | |
steps: | |
- name: View context attributes | |
uses: actions/github-script@v7 | |
with: | |
script: console.log({ context }) | |
label-created-by: | |
name: label-on-open | |
runs-on: ubuntu-latest | |
steps: | |
- name: Tag with 'created-by' | |
uses: actions/github-script@v7 | |
if: github.event.action == 'opened' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const payloadTeamUsernames = [ | |
'denolfe', | |
'jmikrut', | |
'DanRibbens', | |
'jacobsfletch', | |
'JarrodMFlesch', | |
'AlessioGr', | |
'JessChowdhury', | |
'kendelljoseph', | |
'PatrikKozak', | |
'tylandavis', | |
'paulpopus', | |
'r1tsuu', | |
'GermanJablo', | |
]; | |
const type = context.payload.pull_request ? 'pull_request' : 'issue'; | |
const isTeamMember = payloadTeamUsernames | |
.map(n => n.toLowerCase()) | |
.includes(context.payload[type].user.login.toLowerCase()); | |
if (isTeamMember) { | |
github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['created-by: Payload team'], | |
}); | |
console.log(`Added 'created-by: Payload team' label`); | |
return; | |
} | |
const association = context.payload[type].author_association; | |
let label = '' | |
if (association === 'MEMBER' || association === 'OWNER') { | |
label = 'created-by: Payload team'; | |
} else if (association === 'CONTRIBUTOR') { | |
label = 'created-by: Contributor'; | |
} | |
if (!label) return; | |
github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: [label], | |
}); | |
console.log(`Added '${label}' label.`); | |
triage: | |
name: initial-triage | |
if: github.event_name == 'issues' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: ./.github/actions/triage | |
with: | |
reproduction-comment: '.github/comments/invalid-reproduction.md' | |
reproduction-link-section: '### Link to the code that reproduces this issue(.*)### Reproduction Steps' | |
reproduction-issue-labels: 'validate-reproduction' | |
tag-only: 'true' |