diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml deleted file mode 100644 index 9dbcfd04..00000000 --- a/.github/workflows/docs.yaml +++ /dev/null @@ -1,44 +0,0 @@ ---- -name: Docs 📚 - -on: - push: - branches: - - main - paths: - - "inst/templates/**" - - "_pkgdown.*" - - DESCRIPTION - - "**.md" - - "**.Rmd" - - "man/**" - - "LICENSE.*" - - NAMESPACE - pull_request: - types: - - opened - - synchronize - - reopened - - ready_for_review - branches: - - main - paths: - - "inst/templates/**" - - "_pkgdown.*" - - DESCRIPTION - - "**.md" - - "**.Rmd" - - "man/**" - - "LICENSE.*" - - NAMESPACE - workflow_dispatch: - -jobs: - docs: - name: Pkgdown Docs 📚 - uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main - secrets: - REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} - with: - default-landing-page: main - additional-unit-test-report-directories: unit-test-report-non-cran diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 13273d4a..185ee5b3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,14 +8,6 @@ on: workflow_dispatch: jobs: - docs: - name: Pkgdown Docs 📚 - needs: release - uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main - secrets: - REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} - with: - default-landing-page: latest-tag validation: name: R Package Validation report 📃 needs: release @@ -29,7 +21,7 @@ jobs: REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} build: name: Build package and reports 🎁 - needs: [release, docs] + needs: [release] uses: insightsengineering/r.pkg.template/.github/workflows/build-check-install.yaml@main secrets: REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} @@ -46,7 +38,7 @@ jobs: checking top-level files .* NOTE coverage: name: Coverage 📔 - needs: [release, docs] + needs: [release] uses: insightsengineering/r.pkg.template/.github/workflows/test-coverage.yaml@main secrets: REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}