Skip to content

Commit

Permalink
fix: test trigger label sync
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelesh Goel committed Jan 23, 2025
1 parent 6e9278e commit 25f55e2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .github/labels.yaml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/label-synchronization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,40 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

Check failure on line 21 in .github/workflows/label-synchronization.yaml

View workflow job for this annotation

GitHub Actions / Lint YAML files

21:1 [trailing-spaces] trailing spaces
- name: Ensure yamllint settings
if: hashFiles('.github/labels.yaml') == ''
run: |
cat >.github/labels.yaml <<EOF
---
- name: breaking
color: "b60205"
description: This change is not backwards compatible
- name: bug
color: "d93f0b"
description: Something isn't working
- name: documentation
color: "0075ca"
description: Improvements or additions to documentation
- name: enhancement
color: "0e8a16"
description: New feature or request
- name: feature
color: "0e8a16"
description: New feature or request
- name: fix
color: "d93f0b"
description: Something isn't working
- name: misc
color: "6b93d3"
description: Miscellaneous task not covered by something else
- name: no-changelog
color: "cccccc"
description: No entry should be added to the release notes and changelog
- name: security
color: "5319e7"
description: Solving a security issue
EOF
- name: Synchronize labels
uses: crazy-max/ghaction-github-labeler@v5
Expand Down

0 comments on commit 25f55e2

Please sign in to comment.