Skip to content

Commit 07b9eb0

Browse files
authored
Merge pull request #6398 from Shopify/09-15-fix_gh_actions_for_dependabot
Fix GH actions for dependabot
2 parents 08ba114 + 11ce54c commit 07b9eb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/shopify-cli.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,14 +213,15 @@ jobs:
213213
with:
214214
node-version: ${{ matrix.node }}
215215
- name: Post the knip results
216+
if: github.event.pull_request.user.login != 'dependabot[bot]'
216217
uses: codex-/knip-reporter@f717532b6707d95de06b9bb2eb8ece46393f018f # pin@v2
217218
with:
218219
verbose: true
219220

220221
pr-platform-agnostic-graphql-schema:
221222
name: '[PR] Check graphql-codegen has been run'
222223
runs-on: ${{ matrix.os }}
223-
if: ${{ github.event_name == 'pull_request' }}
224+
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' }}
224225
timeout-minutes: 30
225226
strategy:
226227
matrix:

0 commit comments

Comments
 (0)