Skip to content

Commit

Permalink
ci(GitHub): don't run on dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
leon0399 committed Aug 12, 2024
1 parent cb617d3 commit 71bce80
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,13 @@ jobs:
retention-days: 5

report-coverage:
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
needs:
- build-bhaptics
- build-opengloves
- test

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -437,9 +440,12 @@ jobs:
flags: unittests

report-memory-usage:
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
needs:
- build-bhaptics
- build-opengloves

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -561,12 +567,14 @@ jobs:
comment_tag: memory-usage-comparison

wokwi:
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
needs:
- build-bhaptics
- build-opengloves
- test
runs-on: ubuntu-latest

runs-on: ubuntu-latest
strategy:
matrix:
variant:
Expand Down

0 comments on commit 71bce80

Please sign in to comment.