Skip to content

Commit

Permalink
ci(workflows): skip ci workflow when @dependabot pushes to main
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
  • Loading branch information
unicornware committed Aug 20, 2022
1 parent 70d519a commit 1a646fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
ci:
if: |
github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' ||
!startsWith(github.event.head_commit.message, 'release:')
!startsWith(github.event.head_commit.message, 'release:') || github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit 1a646fb

Please sign in to comment.