Skip to content
Closed
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
5 changes: 4 additions & 1 deletion .github/workflows/check_icon_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ jobs:
check:
name: Check the `devicon.json` and the SVGs' quality
runs-on: ubuntu-latest
if: startsWith(github.event.pull_request.title, 'new icon') || startsWith(github.event.pull_request.title, 'update icon') # only checks icon PR
if: | # only checks icon PR and when PR's start with new/update icon or have the both:ckeck label applied
startsWith(github.event.pull_request.title, 'new icon') ||
startsWith(github.event.pull_request.title, 'update icon') ||
github.event.label.name == 'bot:check'
steps:
- uses: actions/checkout@v4

Expand Down
Loading