Skip to content

Commit 88b76fa

Browse files
authored
Merge pull request #625 from tim-schilling/document-persist-credentials
2 parents 39ffc77 + b34e83f commit 88b76fa

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,11 @@ jobs:
205205
contents: write
206206
steps:
207207
- uses: actions/checkout@v4
208+
with:
209+
# This is optional since by default it's to true. The git
210+
# operations in python-coverage-comment-action utilize the token
211+
# stored by actions/checkout.
212+
persist-credentials: true
208213

209214
- name: Install everything, run the tests, produce the .coverage file
210215
run: make test # This is the part where you put your own test command
@@ -245,6 +250,11 @@ jobs:
245250
contents: write
246251
steps:
247252
- uses: actions/checkout@v4
253+
with:
254+
# This is optional since by default it's to true. The git
255+
# operations in python-coverage-comment-action utilize the token
256+
# stored by actions/checkout.
257+
persist-credentials: true
248258
249259
- name: Install everything, run the tests, produce the .coverage file
250260
run: make test # This is the part where you put your own test command
@@ -287,6 +297,11 @@ jobs:
287297
288298
steps:
289299
- uses: actions/checkout@v4
300+
with:
301+
# This is optional since by default it's to true. The git
302+
# operations in python-coverage-comment-action utilize the token
303+
# stored by actions/checkout.
304+
persist-credentials: true
290305
291306
- name: Set up Python
292307
id: setup-python
@@ -324,6 +339,11 @@ jobs:
324339
contents: write
325340
steps:
326341
- uses: actions/checkout@v4
342+
with:
343+
# This is optional since by default it's to true. The git
344+
# operations in python-coverage-comment-action utilize the token
345+
# stored by actions/checkout.
346+
persist-credentials: true
327347

328348
- uses: actions/download-artifact@v4
329349
id: download

0 commit comments

Comments
 (0)