Skip to content
Closed
Changes from 3 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-18.04
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 are labeled with `feature:icon`
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@v2

Expand Down