Skip to content

Commit c8e94af

Browse files
authored
Update token name (#270)
1 parent 6392b3c commit c8e94af

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/check.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: R CMD Check 🧬
3131
uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main
3232
secrets:
33-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
33+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
with:
3535
additional-env-vars: |
3636
_R_CHECK_CRAN_INCOMING_REMOTE_=false
@@ -47,7 +47,7 @@ jobs:
4747
name: Coverage 📔
4848
uses: insightsengineering/r.pkg.template/.github/workflows/test-coverage.yaml@main
4949
secrets:
50-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
50+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151
linter:
5252
if: github.event_name != 'push'
5353
name: SuperLinter 🦸‍♀️
@@ -56,7 +56,7 @@ jobs:
5656
name: Roxygen 🅾
5757
uses: insightsengineering/r.pkg.template/.github/workflows/roxygen.yaml@main
5858
secrets:
59-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
59+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
with:
6161
auto-update: true
6262
gitleaks:
@@ -75,7 +75,7 @@ jobs:
7575
if: github.event_name == 'push'
7676
uses: insightsengineering/r.pkg.template/.github/workflows/version-bump.yaml@main
7777
secrets:
78-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
78+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7979
version:
8080
name: Version Check 🏁
8181
uses: insightsengineering/r.pkg.template/.github/workflows/version.yaml@main

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ jobs:
3838
name: Pkgdown Docs 📚
3939
uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main
4040
secrets:
41-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
41+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4242
with:
4343
default-landing-page: latest-tag

.github/workflows/integration-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: insightsengineering/r.pkg.template/.github/workflows/verdepcheck.yaml@main
1515
name: Dependency Test - ${{ matrix.test-strategy }} 🔢
1616
secrets:
17-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
17+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
GCHAT_WEBHOOK: ${{ secrets.GCHAT_WEBHOOK }}
1919
with:
2020
strategy: ${{ matrix.test-strategy }}

.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
needs: release
1414
uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main
1515
secrets:
16-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
16+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717
with:
1818
skip-r-cmd-check: true
1919
skip-r-cmd-install: true
@@ -22,15 +22,15 @@ jobs:
2222
needs: release
2323
uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main
2424
secrets:
25-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
25+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
with:
2727
default-landing-page: latest-tag
2828
validation:
2929
name: R Package Validation report 📃
3030
needs: release
3131
uses: insightsengineering/r.pkg.template/.github/workflows/validation.yaml@main
3232
secrets:
33-
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
33+
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
release:
3535
name: Create release 🎉
3636
uses: insightsengineering/r.pkg.template/.github/workflows/release.yaml@main

0 commit comments

Comments
 (0)