Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit a39ae25

Browse files
authored
move shared change check to separate workflow with correct permissions (#801)
1 parent f2e54d2 commit a39ae25

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,6 @@ jobs:
5252
with:
5353
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-api' }}
5454

55-
shared-change-checker:
56-
name: See if shared changed
57-
uses: codecov/gha-workflows/.github/workflows/diff-dep.yml@main
58-
with:
59-
dep: 'shared'
60-
6155
build-self-hosted:
6256
name: Build Self Hosted API
6357
needs: [build, test]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Detect dep version changes
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
pull-requests: "write"
8+
9+
jobs:
10+
shared-change-checker:
11+
name: See if shared changed
12+
uses: codecov/gha-workflows/.github/workflows/diff-dep.yml@main
13+
with:
14+
dep: 'shared'

0 commit comments

Comments
 (0)