Skip to content

Commit 0623bcc

Browse files
committed
fix: use MY_REPO_PAT for submodule checkout in CI workflows
1 parent 4c0d417 commit 0623bcc

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/build-matrix.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- uses: actions/checkout@v6
1515
with:
1616
submodules: true
17+
token: ${{ secrets.MY_REPO_PAT }}
1718

1819
- name: Set matrix
1920
id: set-matrix
@@ -42,6 +43,7 @@ jobs:
4243
- uses: actions/checkout@v6
4344
with:
4445
submodules: true
46+
token: ${{ secrets.MY_REPO_PAT }}
4547

4648
- name: Set run variables
4749
id: set-variables

.github/workflows/nightly-release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
with:
2121
submodules: true
22+
token: ${{ secrets.MY_REPO_PAT }}
2223

2324
- name: Set matrix
2425
id: set-matrix
@@ -49,6 +50,7 @@ jobs:
4950
- uses: actions/checkout@v4
5051
with:
5152
submodules: true
53+
token: ${{ secrets.MY_REPO_PAT }}
5254

5355
- uses: ./ext/rusefi/.github/workflows/custom-board-build
5456
with:

0 commit comments

Comments
 (0)