Skip to content

Commit

Permalink
Merge pull request #4265 from opsmill/fac-fix-dependabot-ci
Browse files Browse the repository at this point in the history
fix(ci): disable dependabot incompatible steps
  • Loading branch information
fatih-acar authored Sep 5, 2024
2 parents dea17ac + 459bfd2 commit b6cd8bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ jobs:
flag-name: backend-unit
parallel: true
- name: Generate tracing spans
if: always() && github.event.pull_request.head.repo.fork == false
if: always() && github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]'
uses: inception-health/otel-upload-test-artifact-action@v1
with:
jobName: "backend-tests-unit"
Expand Down Expand Up @@ -612,7 +612,7 @@ jobs:
run: echo JOB_NAME="$GITHUB_JOB" >> $GITHUB_ENV

- name: Enable tracing
if: github.event.pull_request.head.repo.fork == false
if: github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]'
run: echo "INFRAHUB_TRACE_ENABLE=true" >> $GITHUB_ENV
- name: Set tracing configuration
run: echo "INFRAHUB_TRACE_INSECURE=false" >> $GITHUB_ENV
Expand Down Expand Up @@ -683,7 +683,7 @@ jobs:
run: npm run ci:test:e2e

- name: Generate tracing spans
if: always() && github.event.pull_request.head.repo.fork == false
if: always() && github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]'
uses: inception-health/otel-upload-test-artifact-action@v1
with:
jobName: "E2E-testing-playwright"
Expand Down

0 comments on commit b6cd8bb

Please sign in to comment.