Skip to content

Commit 4171b9d

Browse files
committed
feat: MESH Client repository PAT access
1 parent 374bf15 commit 4171b9d

7 files changed

Lines changed: 13 additions & 0 deletions

.github/workflows/cicd-1-pull-request-devtest.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
uses: actions/checkout@v6
3232
with:
3333
submodules: 'true'
34+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
3435
- name: "Set CI/CD variables"
3536
id: variables
3637
run: |

.github/workflows/cicd-1-pull-request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
uses: actions/checkout@v6
3636
with:
3737
submodules: 'true'
38+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
3839
- name: "Set CI/CD variables"
3940
id: variables
4041
run: |

.github/workflows/stage-1-commit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
with:
4444
fetch-depth: 0 # Full history is needed to scan all commits
4545
submodules: 'true'
46+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
4647
- name: "Set up git environment"
4748
run: |
4849
git remote set-head origin --auto

.github/workflows/stage-2-analyse.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
with:
5656
submodules: true
5757
fetch-depth: 0
58+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
5859
- name: Perform static analysis
5960
uses: ./.github/actions/perform-static-analysis
6061
with:

.github/workflows/stage-2-test.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
uses: actions/checkout@v6
6767
with:
6868
submodules: true
69+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
6970
- name: Check for ConsolidatedTests.csproj
7071
id: check
7172
run: |
@@ -92,6 +93,7 @@ jobs:
9293
uses: actions/checkout@v6
9394
with:
9495
submodules: true
96+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
9597
- name: Create matrix for parallel jobs
9698
id: matrix
9799
run: |
@@ -115,6 +117,7 @@ jobs:
115117
uses: actions/checkout@v6
116118
with:
117119
submodules: true
120+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
118121
- name: Setup .NET
119122
uses: actions/setup-dotnet@v4
120123
with:
@@ -165,6 +168,7 @@ jobs:
165168
uses: actions/checkout@v6
166169
with:
167170
submodules: true
171+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
168172
- name: Setup .NET
169173
uses: actions/setup-dotnet@v4
170174
with:
@@ -212,6 +216,7 @@ jobs:
212216
uses: actions/checkout@v6
213217
with:
214218
submodules: true
219+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
215220
- name: Setup .NET
216221
uses: actions/setup-dotnet@v4
217222
with:

.github/workflows/stage-3-build-images-devtest.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
9191
- uses: actions/checkout@v6
9292
with:
9393
token: ${{ secrets.GITHUB_TOKEN }}
94+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
9495
fetch-depth: 1
9596
submodules: 'true'
9697

@@ -185,6 +186,7 @@ jobs:
185186
- uses: actions/checkout@v6
186187
with:
187188
token: ${{ secrets.GITHUB_TOKEN }}
189+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
188190
fetch-depth: 1
189191
submodules: 'true'
190192

.github/workflows/stage-3-build-images.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
9191
- uses: actions/checkout@v6
9292
with:
9393
token: ${{ secrets.GITHUB_TOKEN }}
94+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
9495
fetch-depth: 1
9596
submodules: 'true'
9697

@@ -182,6 +183,7 @@ jobs:
182183
- uses: actions/checkout@v6
183184
with:
184185
token: ${{ secrets.GITHUB_TOKEN }}
186+
token: ${{ secrets.MESH_CLIENT_READ_PAT }}
185187
fetch-depth: 1
186188
submodules: 'true'
187189

0 commit comments

Comments
 (0)