Skip to content

Ads/workflow automation fix (#294) #3

Ads/workflow automation fix (#294)

Ads/workflow automation fix (#294) #3

Workflow file for this run

name: Ads - Triage OWASP Top 10 LLM Apps Issues
env:
PROJECT_TECH_LEAD: "GangGreenTemperTatum"
LLM01_LEAD: "leondz"
LLM02_LEAD: "kenhuangus"
LLM03_LEAD: "GangGreenTemperTatum"
LLM04_LEAD: "kenhuangus"
LLM05_LEAD: "jsotiro"
LLM06_LEAD: "GangGreenTemperTatum"
LLM07_LEAD: "rot169"
LLM08_LEAD: "virtualsteve-star"
LLM09_LEAD: "jsotiro"
LLM10_LEAD: "GangGreenTemperTatum"
PR_LEAD: "faceplate27"
POSTMASTER: "TBC"
TRANSLATIONS: "talesh"
DATA_GATHERING: "emmanuelgjr"
DESIGN: "rossja"
DIAGRAMS: "TBC"
WEB_DEVS: "mkfnch,rossja,GangGreenTemperTatum"
SEC_GOVERNANCE: "subzer0girl2"
on:
issues:
types: [opened, labeled]
jobs:
welcomes:
runs-on: ubuntu-latest
if: issues.types == 'opened'
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for reporting! Please ensure labels are applied appropriately to the issue so that the workflow automation can triage this to the correct member of the core team'
})
triage:
runs-on: ubuntu-latest
if: issues.types == 'labeled'
steps:

Check failure on line 49 in .github/workflows/issue-triage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/issue-triage.yml

Invalid workflow file

You have an error in your yaml syntax on line 49
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/github-script@v7
with:
script: |
const issue = context.payload.issue;
const labels = issue.labels.map(label => label.name);
const assignees = [];
// Label-to-assignee mappings
const labelAssigneeMap = {
'bug': [${{ env.PROJECT_TECH_LEAD }}],
'extension': [${{ env.PROJECT_TECH_LEAD }}],
'llm-other': [${{ env.PROJECT_TECH_LEAD }}],
'diagram': [${{ env.PROJECT_TECH_LEAD }}],
'pdf': [${{ env.DESIGN }}],
'website': [${{ env.WEB_DEVS }}],
'llm-01': [${{ env.LLM01_LEAD }}],
'llm-02': [${{ env.LLM02_LEAD }}],
'llm-03': [${{ env.LLM03_LEAD }}],
'llm-04': [${{ env.LLM04_LEAD }}],
'llm-05': [${{ env.LLM05_LEAD }}],
'llm-06': [${{ env.LLM06_LEAD }}],
'llm-07': [${{ env.LLM07_LEAD }}],
'llm-08': [${{ env.LLM08_LEAD }}],
'llm-09': [${{ env.LLM09_LEAD }}],
'llm-10': [${{ env.LLM10_LEAD }}]
};
// Check labels and assign based on mappings
labels.forEach(label => {
if (labelAssigneeMap[label]) {
assignees.push(...labelAssigneeMap[label]);
}
});
// Remove duplicates from assignees list
// const uniqueAssignees = [...new Set(assignees)];
// Assign the issue to the calculated assignees
await github.issues.addAssignees({
issue_number: issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
assignees: uniqueAssignees
});
env:
GITHUB_TOKEN: ${{ secrets.ADS_OWASP_LLM_APPS_REPO_TOKEN }}