Skip to content

Commit

Permalink
build: update labels workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kotzbauer <[email protected]>
  • Loading branch information
ckotzbauer committed Dec 11, 2022
1 parent 4c093e1 commit 4d41f60
Show file tree
Hide file tree
Showing 9 changed files with 70 additions and 33 deletions.
25 changes: 0 additions & 25 deletions .github/labels.json

This file was deleted.

62 changes: 62 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
- name: kind/bug
color: d73a4a
description: Categorizes issue or PR as related to a bug.
- name: kind/feature
color: a2eeef
description: Categorizes issue or PR as related to a new feature.
- name: kind/documentation
color: 0075ca
description: Categorizes issue or PR as related to documentation.
- name: kind/test
color: ddc23b
description: Categorizes issue or PR as related to tests.
- name: kind/cleanup
color: ededed
description: Categorizes issue or PR as related to cleaning up code, process, or
technical debt.
- name: kind/dependencies
color: ededed
description: Pull requests that update a dependency file
- name: kind/security
color: 10cc8a
description: Categorizes issue or PR as related to security.
- name: kind/question
color: 775FCB
description: Categorizes issues related to questions.
- name: lifecycle/stale
color: 795548
description: Denotes an issue or PR has remained open with no activity and has become
stale.
- name: lifecycle/frozen
color: d3e2f0
description: Indicates that an issue or PR should not be auto-closed due to staleness.
- name: size/XS
color: 009900
description: Denotes a PR that changes 0-9 lines, ignoring generated files.
- name: size/S
color: 77bb00
description: Denotes a PR that changes 10-29 lines, ignoring generated files.
- name: size/M
color: eebb00
description: Denotes a PR that changes 30-99 lines, ignoring generated files.
- name: size/L
color: ee9900
description: Denotes a PR that changes 100-499 lines, ignoring generated files.
- name: size/XL
color: ee5500
description: Denotes a PR that changes 500-999 lines, ignoring generated files.
- name: size/XXL
color: ee0000
description: Denotes a PR that changes 1000+ lines, ignoring generated files.
- name: help wanted
color: 008672
description: Denotes an issue that needs help from a contributor.
- name: good first issue
color: 7057ff
description: Denotes an issue ready for a new contributor.
- name: hold
color: e11d21
description: Indicates that a PR should not merge.
- name: work-in-progress
color: e01dd6
description: Indicates that a PR is still in progress.
4 changes: 2 additions & 2 deletions .github/workflows/create-default-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on:
branches:
- "main"
paths:
- ".github/labels.json"
- ".github/labels.yml"
workflow_dispatch: {}

jobs:
size-label:
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-create-default-labels.yml@0.26.0
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-create-default-labels.yml@0.27.0
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
release:
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-release-goreleaser.yml@0.26.0
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-release-goreleaser.yml@0.27.0
with:
go-version: "1.19.4"
version: ${{ github.event.inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
label-issues:
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-label-issues.yml@0.26.0
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-label-issues.yml@0.27.0
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/size-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
size-label:
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-size-label.yml@0.26.0
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-size-label.yml@0.27.0
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:

jobs:
stale:
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-stale.yml@0.26.0
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-stale.yml@0.27.0
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
ghcr.io/ckotzbauer/vulnerability-operator:latest
- name: Container scan
uses: ckotzbauer/actions-toolkit/grype@0.26.0
uses: ckotzbauer/actions-toolkit/grype@0.27.0
with:
scan-target: ghcr.io/ckotzbauer/vulnerability-operator
fail-on: "medium"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
update-snyk:
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-scan-snyk.yml@0.26.0
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-scan-snyk.yml@0.27.0
with:
install-go: true
go-version: '1.19.4'
Expand Down

0 comments on commit 4d41f60

Please sign in to comment.