From 023d838a95bc46744fbd6f8df4873db067297ffc Mon Sep 17 00:00:00 2001 From: Franciszek Walkowiak Date: Fri, 2 Jun 2023 10:16:55 +0200 Subject: [PATCH] Update workflows --- .github/workflows/check.yaml | 10 +++++----- .github/workflows/docs.yaml | 2 +- .github/workflows/release.yaml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index a0f9f26f..c7aabb6a 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -23,19 +23,19 @@ jobs: name: R CMD Check 🧬 uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} bioccheck: name: BiocCheck 🩺 uses: insightsengineering/r.pkg.template/.github/workflows/bioccheck.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} with: enable-bioccheck: true coverage: name: Coverage πŸ“” uses: insightsengineering/r.pkg.template/.github/workflows/test-coverage.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} linter: if: github.event_name != 'push' name: SuperLinter πŸ¦Έβ€β™€οΈ @@ -44,7 +44,7 @@ jobs: name: Roxygen πŸ…Ύ uses: insightsengineering/r.pkg.template/.github/workflows/roxygen.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} with: auto-update: true gitleaks: @@ -63,7 +63,7 @@ jobs: if: github.event_name == 'push' uses: insightsengineering/r.pkg.template/.github/workflows/version-bump.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} version: name: Version Check 🏁 uses: insightsengineering/r.pkg.template/.github/workflows/version.yaml@main diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 6cf36699..e27f37df 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -38,6 +38,6 @@ jobs: name: Pkgdown Docs πŸ“š uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} with: default-landing-page: latest-tag diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e2a713f3..b3db781f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: needs: release uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} with: skip-r-cmd-check: true skip-r-cmd-install: true @@ -22,7 +22,7 @@ jobs: needs: release uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} with: default-landing-page: latest-tag validation: @@ -30,7 +30,7 @@ jobs: needs: release uses: insightsengineering/r.pkg.template/.github/workflows/validation.yaml@main secrets: - REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} release: name: Create release πŸŽ‰ uses: insightsengineering/r.pkg.template/.github/workflows/release.yaml@main