From a9b1b3a19faa31103e1a49a535328a07e55c6a08 Mon Sep 17 00:00:00 2001 From: walkowif <59475134+walkowif@users.noreply.github.com> Date: Wed, 22 May 2024 16:44:30 +0200 Subject: [PATCH 01/16] Add urlchecker (#235) --- .github/workflows/links.yaml | 63 ++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/.github/workflows/links.yaml b/.github/workflows/links.yaml index 768dd205..738d25e8 100644 --- a/.github/workflows/links.yaml +++ b/.github/workflows/links.yaml @@ -21,6 +21,19 @@ on: required: false type: string default: "" + package-subdirectory: + description: Subdirectory in the repository, where the R package is located. + required: false + type: string + default: "" + link-checking-method: + description: | + Which link checking method should be used? Supported methods are: + lychee + urlchecker + required: false + type: string + default: "urlchecker" concurrency: group: links-${{ github.event.pull_request.number || github.ref }} @@ -33,6 +46,7 @@ jobs: if: > !contains(github.event.commits[0].message, '[skip links]') && github.event.pull_request.draft == false + && inputs.link-checking-method == 'lychee' steps: - name: Get branch names 🌿 id: branch-name @@ -80,3 +94,52 @@ jobs: **/*.yml env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + urlchecker: + name: URL Checker 🔎 + runs-on: ubuntu-latest + container: + image: rocker/tidyverse:latest + if: > + !contains(github.event.commits[0].message, '[skip links]') + && github.event.pull_request.draft == false + && inputs.link-checking-method == 'urlchecker' + steps: + - name: Get branch names 🌿 + id: branch-name + uses: tj-actions/branch-names@v7 + + - name: Checkout repo (PR) 🛎 + uses: actions/checkout@v4.1.1 + if: github.event_name == 'pull_request' + with: + ref: ${{ steps.branch-name.outputs.head_ref_branch }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + + - name: Checkout repo 🛎 + uses: actions/checkout@v4.1.1 + if: github.event_name != 'pull_request' + with: + ref: ${{ steps.branch-name.outputs.head_ref_branch }} + + - name: Check commit message 💬 + run: | + git config --global --add safe.directory $(pwd) + export head_commit_message="$(git show -s --format=%B | tr '\r\n' ' ' | tr '\n' ' ')" + echo "head_commit_message = $head_commit_message" + if [[ $head_commit_message == *"$SKIP_INSTRUCTION"* ]]; then + echo "Skip instruction detected - cancelling the workflow." + exit 1 + fi + shell: bash + env: + SKIP_INSTRUCTION: "[skip links]" + + - name: Check URLs with urlchecker 🔬 + run: | + bad_urls <- nrow(print(urlchecker::url_check("."))) + if (bad_urls > 0) { + stop("Looks like a total of ", bad_urls, " URL(s) were found! Please correct them.") + } + shell: Rscript {0} + working-directory: ${{ inputs.package-subdirectory }} From 55504632924c57a0da3829f1c8f746f4da3c9793 Mon Sep 17 00:00:00 2001 From: walkowif Date: Wed, 22 May 2024 14:45:30 +0000 Subject: [PATCH 02/16] [skip actions] Bump version to 0.1.0.9160 --- DESCRIPTION | 4 ++-- NEWS.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 539af9f2..564de3da 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9159 -Date: 2024-05-14 +Version: 0.1.0.9160 +Date: 2024-05-22 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) Description: R package template with GitHub Actions workflows included. diff --git a/NEWS.md b/NEWS.md index cd8fabf0..9e290625 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9159 +# r.pkg.template 0.1.0.9160 ### New features From 804f3c9ee0a65191383218751fa0b3ed0149c81e Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Tue, 4 Jun 2024 09:02:36 -0500 Subject: [PATCH 03/16] chore: Update the gh-pages action to v4 (#237) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This should eliminate the following warnings: ![Screenshot 2024-06-04 at 8 52 26 AM](https://github.com/insightsengineering/r.pkg.template/assets/26552821/d452b293-73b7-46de-923f-1105cd3abce2) --- .github/workflows/build-check-install.yaml | 8 ++++---- .github/workflows/test-coverage.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-check-install.yaml b/.github/workflows/build-check-install.yaml index 04ed446e..dc650d30 100644 --- a/.github/workflows/build-check-install.yaml +++ b/.github/workflows/build-check-install.yaml @@ -813,7 +813,7 @@ jobs: - name: Upload JUnit HTML report to GitHub pages 🗞️ if: needs.build-install-check.outputs.multiversion-docs == 'true' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./unit-test-report @@ -823,7 +823,7 @@ jobs: if: > needs.build-install-check.outputs.is-latest-tag == 'true' && needs.build-install-check.outputs.multiversion-docs == 'true' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./unit-test-report @@ -833,7 +833,7 @@ jobs: if: > needs.build-install-check.outputs.is-rc-tag == 'true' && needs.build-install-check.outputs.multiversion-docs == 'true' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./unit-test-report @@ -841,7 +841,7 @@ jobs: - name: Upload JUnit HTML report to GitHub pages (non-multiversion) 🗞️ if: needs.build-install-check.outputs.multiversion-docs == 'false' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./unit-test-report diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 9ab106e4..7e4acf61 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -419,7 +419,7 @@ jobs: - name: Upload coverage report to GitHub pages 🗞️ if: needs.coverage.outputs.multiversion-docs == 'true' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./coverage-report @@ -429,7 +429,7 @@ jobs: if: > needs.coverage.outputs.is-latest-tag == 'true' && needs.coverage.outputs.multiversion-docs == 'true' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./coverage-report @@ -439,7 +439,7 @@ jobs: if: > needs.coverage.outputs.is-rc-tag == 'true' && needs.coverage.outputs.multiversion-docs == 'true' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./coverage-report @@ -447,7 +447,7 @@ jobs: - name: Upload coverage report to GitHub pages (non-multiversion) 🗞️ if: needs.coverage.outputs.multiversion-docs == 'false' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ steps.github-token.outputs.token }} publish_dir: ./coverage-report From 6595b8dbd177b6c11133844c5bb2e95781ca0fad Mon Sep 17 00:00:00 2001 From: cicdguy Date: Tue, 4 Jun 2024 14:03:35 +0000 Subject: [PATCH 04/16] [skip actions] Bump version to 0.1.0.9161 --- .pre-commit-config.yaml | 2 +- DESCRIPTION | 4 ++-- NEWS.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b752cef0..91ccf0ea 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -77,6 +77,6 @@ repos: files: '\.Rhistory|\.RData|\.Rds|\.rds$' # `exclude: ` to allow committing specific files. - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.40.0 + rev: v0.41.0 hooks: - id: markdownlint diff --git a/DESCRIPTION b/DESCRIPTION index 564de3da..4f654655 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9160 -Date: 2024-05-22 +Version: 0.1.0.9161 +Date: 2024-06-04 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) Description: R package template with GitHub Actions workflows included. diff --git a/NEWS.md b/NEWS.md index 9e290625..6d481ee9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9160 +# r.pkg.template 0.1.0.9161 ### New features From 88a6accd2315f28a371f0db3fb51efc25ca81268 Mon Sep 17 00:00:00 2001 From: walkowif <59475134+walkowif@users.noreply.github.com> Date: Tue, 4 Jun 2024 17:44:54 +0200 Subject: [PATCH 05/16] Fix urlchecker (#238) --- .github/workflows/links.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/links.yaml b/.github/workflows/links.yaml index 738d25e8..ffac4e32 100644 --- a/.github/workflows/links.yaml +++ b/.github/workflows/links.yaml @@ -137,7 +137,8 @@ jobs: - name: Check URLs with urlchecker 🔬 run: | - bad_urls <- nrow(print(urlchecker::url_check("."))) + # For unexplained reasons, parallel = FALSE is required to prevent some false positives. + bad_urls <- nrow(print(urlchecker::url_check(".", parallel = FALSE))) if (bad_urls > 0) { stop("Looks like a total of ", bad_urls, " URL(s) were found! Please correct them.") } From 1e5458139b26d889847494cddda10c9719ed6ad3 Mon Sep 17 00:00:00 2001 From: walkowif Date: Tue, 4 Jun 2024 15:45:51 +0000 Subject: [PATCH 06/16] [skip actions] Bump version to 0.1.0.9162 --- DESCRIPTION | 2 +- NEWS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 4f654655..4246c42a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9161 +Version: 0.1.0.9162 Date: 2024-06-04 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) diff --git a/NEWS.md b/NEWS.md index 6d481ee9..4d848a43 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9161 +# r.pkg.template 0.1.0.9162 ### New features From 3b614720e6b2fe1761c71bf1608750ab5442b150 Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:46:08 -0500 Subject: [PATCH 07/16] feat: Make private link exclusion optional (#239) Make private link exclusion optional --- .github/workflows/links.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/links.yaml b/.github/workflows/links.yaml index ffac4e32..d9887d7b 100644 --- a/.github/workflows/links.yaml +++ b/.github/workflows/links.yaml @@ -16,11 +16,11 @@ on: workflow_dispatch: workflow_call: inputs: - additional_args: + lychee-additional-args: description: Additional arguments to pass to lychee required: false type: string - default: "" + default: "--exclude-private" package-subdirectory: description: Subdirectory in the repository, where the R package is located. required: false @@ -82,11 +82,10 @@ jobs: uses: lycheeverse/lychee-action@v1.8.0 with: args: >- - --exclude-private --exclude "https://github.com.*.git|https://insightsengineering.github.io.*|lewagon.*|knightdave.*|.*users.noreply.github.com|lycheeverse.*" --verbose --no-progress - ${{ inputs.additional_args }} + ${{ inputs.lychee-additional-args }} **/*.md **/*.html **/*.Rmd From 06ff0e054027f032ca6e7393ac53c93c68b9ce51 Mon Sep 17 00:00:00 2001 From: cicdguy Date: Wed, 5 Jun 2024 14:47:08 +0000 Subject: [PATCH 08/16] [skip actions] Bump version to 0.1.0.9163 --- DESCRIPTION | 4 ++-- NEWS.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 4246c42a..e7882fcc 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9162 -Date: 2024-06-04 +Version: 0.1.0.9163 +Date: 2024-06-05 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) Description: R package template with GitHub Actions workflows included. diff --git a/NEWS.md b/NEWS.md index 4d848a43..cdbd79b3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9162 +# r.pkg.template 0.1.0.9163 ### New features From d2b51d14798c709a94f9b39869b81976681d5947 Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:52:58 -0500 Subject: [PATCH 09/16] Fail lychee as an input Signed-off-by: cicdguy <26552821+cicdguy@users.noreply.github.com> --- .github/workflows/links.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/links.yaml b/.github/workflows/links.yaml index d9887d7b..7309b2f7 100644 --- a/.github/workflows/links.yaml +++ b/.github/workflows/links.yaml @@ -21,6 +21,11 @@ on: required: false type: string default: "--exclude-private" + lychee-fail: + description: Fail workflow run on error (i.e. when lychee exit code is not 0) + required: false + type: boolean + default: false package-subdirectory: description: Subdirectory in the repository, where the R package is located. required: false @@ -79,7 +84,7 @@ jobs: SKIP_INSTRUCTION: "[skip links]" - name: Check URLs in docs 🔬 - uses: lycheeverse/lychee-action@v1.8.0 + uses: lycheeverse/lychee-action@v1.10.0 with: args: >- --exclude "https://github.com.*.git|https://insightsengineering.github.io.*|lewagon.*|knightdave.*|.*users.noreply.github.com|lycheeverse.*" @@ -91,6 +96,7 @@ jobs: **/*.Rmd **/*.yaml **/*.yml + fail: ${{ inputs.lychee-fail }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From ec6e818f41446ce1c162e42272abde04d7afd21a Mon Sep 17 00:00:00 2001 From: cicdguy Date: Wed, 5 Jun 2024 14:54:00 +0000 Subject: [PATCH 10/16] [skip actions] Bump version to 0.1.0.9164 --- DESCRIPTION | 2 +- NEWS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index e7882fcc..7efdbd10 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9163 +Version: 0.1.0.9164 Date: 2024-06-05 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) diff --git a/NEWS.md b/NEWS.md index cdbd79b3..a28677ef 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9163 +# r.pkg.template 0.1.0.9164 ### New features From 678bbe0d6510cf2bcca54f29eff85ad0a2b405c8 Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Wed, 5 Jun 2024 10:34:56 -0500 Subject: [PATCH 11/16] fix: Add *.md for lychee link checks (#240) --- .github/workflows/links.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/links.yaml b/.github/workflows/links.yaml index 7309b2f7..cae32849 100644 --- a/.github/workflows/links.yaml +++ b/.github/workflows/links.yaml @@ -96,6 +96,7 @@ jobs: **/*.Rmd **/*.yaml **/*.yml + *.md fail: ${{ inputs.lychee-fail }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From f2045d857dbec8045351c2516c6915c258d156e9 Mon Sep 17 00:00:00 2001 From: cicdguy Date: Wed, 5 Jun 2024 15:35:55 +0000 Subject: [PATCH 12/16] [skip actions] Bump version to 0.1.0.9165 --- DESCRIPTION | 2 +- NEWS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 7efdbd10..3b5775fa 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9164 +Version: 0.1.0.9165 Date: 2024-06-05 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) diff --git a/NEWS.md b/NEWS.md index a28677ef..d291e319 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9164 +# r.pkg.template 0.1.0.9165 ### New features From 278d595eae1c3c60b8e9fa96e6ad148c25008088 Mon Sep 17 00:00:00 2001 From: walkowif <59475134+walkowif@users.noreply.github.com> Date: Mon, 17 Jun 2024 15:44:21 +0200 Subject: [PATCH 13/16] Show expandable R CMD check logs + upload them as artifact (#241) --- .github/workflows/build-check-install.yaml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-check-install.yaml b/.github/workflows/build-check-install.yaml index dc650d30..7edb7af4 100644 --- a/.github/workflows/build-check-install.yaml +++ b/.github/workflows/build-check-install.yaml @@ -694,9 +694,12 @@ jobs: if: inputs.skip-r-cmd-check != true run: | find ${{ env.PKGNAME }}.Rcheck -type f -regextype posix-egrep \ - -regex '.*00install.out|.*00check.log|.*00build.out' -print0 | while IFS= read -r -d $'\0' file; do - printf "==================================\n$file\n==================================\n" - cat $file + -regex '.*00install.out|.*00check.log|.*00build.out|.*-Ex.Rout|.*tests/testthat\.Rout.*' \ + -print0 | while IFS= read -r -d $'\0' file; do + # Grouping allows to collapse/expand logs when needed. + echo "::group::$file" + cat $file + echo "::endgroup::" done shell: bash @@ -782,6 +785,18 @@ jobs: path: ${{ github.event.repository.name }}/${{ inputs.package-subdirectory }}/${{ env.PKGBUILD }} name: ${{ env.PKGBUILD }} + - name: Upload logs artifact 🗞️ + uses: actions/upload-artifact@v4 + with: + path: | + ${{ env.PKGNAME }}.Rcheck/*00install.out + ${{ env.PKGNAME }}.Rcheck/*00check.log + ${{ env.PKGNAME }}.Rcheck/*00build.out + ${{ env.PKGNAME }}.Rcheck/*-Ex.Rout + ${{ env.PKGNAME }}.Rcheck/tests/testthat.Rout + ${{ env.PKGNAME }}.Rcheck/tests/testthat.Rout.fail + name: check-logs-${{ env.PKGNAME }} + publish-junit-html-report: name: Publish JUnit HTML report 📰 runs-on: ubuntu-latest From b77d76f2356d8ae3518fba9a584d80748b5b6dc0 Mon Sep 17 00:00:00 2001 From: walkowif Date: Mon, 17 Jun 2024 13:45:18 +0000 Subject: [PATCH 14/16] [skip actions] Bump version to 0.1.0.9166 --- DESCRIPTION | 4 ++-- NEWS.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 3b5775fa..2d7bb14f 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9165 -Date: 2024-06-05 +Version: 0.1.0.9166 +Date: 2024-06-17 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) Description: R package template with GitHub Actions workflows included. diff --git a/NEWS.md b/NEWS.md index d291e319..52bcb28b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9165 +# r.pkg.template 0.1.0.9166 ### New features From 93aaded91bbb37910dea218c5989ca5d6e413faa Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Tue, 18 Jun 2024 06:44:02 -0500 Subject: [PATCH 15/16] Unique build artifact name for logs (#242) --- .github/workflows/build-check-install.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-check-install.yaml b/.github/workflows/build-check-install.yaml index 7edb7af4..5fc2fe5c 100644 --- a/.github/workflows/build-check-install.yaml +++ b/.github/workflows/build-check-install.yaml @@ -795,7 +795,7 @@ jobs: ${{ env.PKGNAME }}.Rcheck/*-Ex.Rout ${{ env.PKGNAME }}.Rcheck/tests/testthat.Rout ${{ env.PKGNAME }}.Rcheck/tests/testthat.Rout.fail - name: check-logs-${{ env.PKGNAME }} + name: check-logs-${{ env.PKGNAME }}-${{ inputs.concurrency-group }} publish-junit-html-report: name: Publish JUnit HTML report 📰 From b8e3de5ceee405c56c5d5afac472dadae5bf6322 Mon Sep 17 00:00:00 2001 From: cicdguy Date: Tue, 18 Jun 2024 11:45:00 +0000 Subject: [PATCH 16/16] [skip actions] Bump version to 0.1.0.9167 --- DESCRIPTION | 4 ++-- NEWS.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2d7bb14f..e9e24ac1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Type: Package Package: r.pkg.template Title: R Package Template -Version: 0.1.0.9166 -Date: 2024-06-17 +Version: 0.1.0.9167 +Date: 2024-06-18 Authors@R: person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre")) Description: R package template with GitHub Actions workflows included. diff --git a/NEWS.md b/NEWS.md index 52bcb28b..b5f4ce4f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# r.pkg.template 0.1.0.9166 +# r.pkg.template 0.1.0.9167 ### New features