Skip to content

Commit

Permalink
ci: Add condition to exclude dependabot PRs in size-label job
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Lauber <[email protected]>
  • Loading branch information
janlauber committed Mar 18, 2024
1 parent b31ebbf commit 261df1e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on: pull_request
jobs:
size-label:
runs-on: ubuntu-latest
# Do not run on dependabot PRs
if: github.actor != 'dependabot[bot]'
steps:
- name: size-label
uses: "pascalgn/[email protected]"
Expand Down

0 comments on commit 261df1e

Please sign in to comment.