File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -280,6 +280,9 @@ jobs:
280
280
git config --local user.email "[email protected] "
281
281
git config --local user.name "GitHub Action"
282
282
283
+ # Configure git to use the PAT for authentication
284
+ git remote set-url origin https://x-access-token:${{ secrets.IDEE_GH_TOKEN }}@github.com/${{ github.repository }}.git
285
+
283
286
# Add all changes (including version bumps and tags)
284
287
git add .
285
288
Original file line number Diff line number Diff line change 64
64
- name : Checkout
65
65
uses : actions/checkout@v4
66
66
with :
67
+ token : ${{ secrets.IDEE_GH_TOKEN }}
67
68
fetch-depth : 0
68
69
ref : ${{ inputs.branch || github.ref }}
69
70
@@ -111,6 +112,7 @@ jobs:
111
112
- name : Checkout
112
113
uses : actions/checkout@v4
113
114
with :
115
+ token : ${{ secrets.IDEE_GH_TOKEN }}
114
116
fetch-depth : 0
115
117
ref : ${{ inputs.branch || github.ref }}
116
118
You can’t perform that action at this time.
0 commit comments