Skip to content

Commit

Permalink
feat: add new GitHub labels and workflows for label automation
Browse files Browse the repository at this point in the history
  • Loading branch information
alismx committed Feb 4, 2025
1 parent 1fa2c25 commit dd207ac
Show file tree
Hide file tree
Showing 2 changed files with 128 additions and 0 deletions.
106 changes: 106 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
- # Cloud Enablement
name: "Cloud Enablement"
color: "ededed"
description: "Cloud Enablement DevOps"
- # Streamline eCR
name: "Streamline eCR"
color: "5AC2F6"
description: "Streamline eCR DevOps"
- # Query Connector
name: "Query Connector"
color: "F2C94C"
description: "Query Connector DevOps"
- # aws
name: "AWS"
color: "ff9900"
description: "Amazon Web Services"
- # azure
name: "Azure"
color: "0072c6"
description: "Microsoft Azure"
- # gcp
name: "GCP"
color: "4285f4"
description: "Google Cloud Platform"
- # governance
name: ":memo: governance"
color: "f2c94c"
description: "CDC practices"
- # automerge
name: ":bell: automerge"
color: "8f4fbc"
description: ""
- # bot
name: ":robot: bot"
color: "69cde9"
description: ""
- # bug
name: ":bug: bug"
color: "b60205"
description: ""
- # dependencies
name: ":game_die: dependencies"
color: "0366d6"
description: ""
from_name: "dependencies"
- # documentation
name: ":memo: documentation"
color: "c5def5"
description: ""
- # duplicate
name: ":busts_in_silhouette: duplicate"
color: "cccccc"
description: ""
- # enhancement
name: ":sparkles: enhancement"
color: "0054ca"
description: ""
- # feature request
name: ":bulb: feature request"
color: "0e8a16"
description: ""
- # feedback
name: ":mega: feedback"
color: "03a9f4"
description: ""
- # future maybe
name: ":rocket: future maybe"
color: "fef2c0"
description: ""
- # good first issue
name: ":hatching_chick: good first issue"
color: "7057ff"
description: ""
- # help wanted
name: ":pray: help wanted"
color: "4caf50"
description: ""
- # hold
name: ":hand: hold"
color: "24292f"
description: ""
- # invalid
name: ":no_entry_sign: invalid"
color: "e6e6e6"
description: ""
- # maybe bug
name: ":interrobang: maybe bug"
color: "ff5722"
description: ""
- # needs more info
name: ":thinking: needs more info"
color: "795548"
description: ""
- # question
name: ":question: question"
color: "3f51b5"
description: ""
from_name: "question"
- # upstream
name: ":eyes: upstream"
color: "fbca04"
description: ""
- # wontfix
name: ":coffin: wontfix"
color: "ffffff"
description: ""
22 changes: 22 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: labels

on:
push:
branches:
- 'main'
paths:
- '.github/labels.yml'
- '.github/workflows/labels.yml'

jobs:
labeler:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@31674a3852a9074f2086abcf1c53839d466a47e7

0 comments on commit dd207ac

Please sign in to comment.