Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.github/workflows/*.lock.yml linguist-generated=true merge=ours
9 changes: 9 additions & 0 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"entries": {
"github/gh-aw/actions/setup@v0.43.23": {
"repo": "github/gh-aw/actions/setup",
"version": "v0.43.23",
"sha": "9382be3ca9ac18917e111a99d4e6bbff58d0dccc"
}
}
}
142 changes: 142 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
# =============================================================================
# Label Taxonomy for microsoft/security-devops-azdevops
# =============================================================================
# Labels are managed directly via the GitHub API.
# This file serves as the source of truth for the label definitions.
#
# Naming convention: <group>:<value> (lowercase, kebab-case)
# Color convention: consistent within each group for at-a-glance filtering
# =============================================================================

# ---------------------------------------------------------------------------
# Type — what kind of issue / PR
# ---------------------------------------------------------------------------
- name: "type:bug"
description: "Something isn't working"
color: "d73a4a"

- name: "type:feature"
description: "New feature or request"
color: "a2eeef"

- name: "type:docs"
description: "Improvements or additions to documentation"
color: "0075ca"

- name: "type:question"
description: "General question or support request"
color: "d876e3"

- name: "type:security"
description: "Security vulnerability or hardening"
color: "e11d48"

- name: "type:maintenance"
description: "Dependency updates, refactoring, chores"
color: "bfd4f2"

# ---------------------------------------------------------------------------
# Priority — how urgent
# ---------------------------------------------------------------------------
- name: "priority:critical"
description: "Blocking issue, needs immediate fix"
color: "b60205"

- name: "priority:high"
description: "Important, should be addressed soon"
color: "d93f0b"

- name: "priority:medium"
description: "Normal priority"
color: "fbca04"

- name: "priority:low"
description: "Nice to have, address when convenient"
color: "0e8a16"

# ---------------------------------------------------------------------------
# Status — where in the workflow
# ---------------------------------------------------------------------------
- name: "status:triage"
description: "Needs initial triage and classification"
color: "f9d0c4"

- name: "status:waiting-on-author"
description: "Waiting for more information from author"
color: "f9d0c4"

- name: "status:repro-needed"
description: "Bug needs reproduction steps"
color: "f9d0c4"

- name: "status:team-review"
description: "Queued for team review and decision"
color: "d93f0b"

- name: "status:approved"
description: "Accepted, ready to be worked on"
color: "0e8a16"

- name: "status:blocked"
description: "Blocked by external dependency or decision"
color: "b60205"

- name: "status:inactive"
description: "No activity for an extended period"
color: "cfd3d7"

# ---------------------------------------------------------------------------
# Area — what component
# ---------------------------------------------------------------------------
- name: "area:task"
description: "Azure DevOps build task definition and configuration"
color: "c5def5"

- name: "area:container-mapping"
description: "Container image mapping functionality"
color: "c5def5"

- name: "area:tools"
description: "Individual security tool configuration and issues"
color: "c5def5"

- name: "area:pipeline"
description: "Azure Pipelines integration and configuration"
color: "c5def5"

# ---------------------------------------------------------------------------
# Resolution — how it was closed
# ---------------------------------------------------------------------------
- name: "resolution:duplicate"
description: "This issue or pull request already exists"
color: "cfd3d7"

- name: "resolution:wontfix"
description: "This will not be worked on"
color: "eeeeee"

- name: "resolution:invalid"
description: "Not a valid issue"
color: "e4e669"

- name: "resolution:by-design"
description: "Working as intended"
color: "cfd3d7"

# ---------------------------------------------------------------------------
# Community
# ---------------------------------------------------------------------------
- name: "good first issue"
description: "Good for newcomers"
color: "7057ff"

- name: "help wanted"
description: "Extra attention is needed"
color: "008672"

# ---------------------------------------------------------------------------
# Special
# ---------------------------------------------------------------------------
- name: "agentic-workflows"
description: "Related to GitHub Agentic Workflows"
color: "1d76db"
Loading