Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/check-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
steps:
- uses: docker://agilepathway/pull-request-label-checker:latest
with:
one_of: bug,feature,enhancement,documentation,dependencies,ignore-for-release
one_of: bug,feature,enhancement,documentation,dependencies,ignore-for-release,ci/cd
Copy link

Copilot AI Nov 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The label 'ci/cd' contains a forward slash which may cause parsing issues in some label checkers. Consider using a hyphenated format like 'ci-cd' or 'cicd' instead.

Suggested change
one_of: bug,feature,enhancement,documentation,dependencies,ignore-for-release,ci/cd
one_of: bug,feature,enhancement,documentation,dependencies,ignore-for-release,ci-cd

Copilot uses AI. Check for mistakes.
repo_token: ${{ secrets.GITHUB_TOKEN }}
Loading