Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .github/workflows/check_on_branch.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/check_on_main.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/check_package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
branches-ignore:
- ghpages

name: "check package with checklist"

jobs:
check-package:
runs-on: ubuntu-24.04
name: check-package
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
RSPM: "https://packagemanager.posit.co/cran/__linux__/noble/latest"
permissions:
contents: read
steps:
- name: "Check package with checklist"
uses: inbo/actions/check_pkg@composite
deploy-pages:
name: deploy-gh-pages
runs-on: ubuntu-24.04
needs: check-package
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
permissions:
contents: write
steps:
- name: "Tag and deploy gh-pages"
uses: inbo/actions/check_deploy@composite
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: inbo/actions/render_inbomd@devel
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EXAMPLE_BRANCH: main
EXAMPLE_BRANCH: citeme

- name: push gh-pages
if: ${{ github.event_name == 'push' }}
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/release.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/remove_old_artifacts.yml

This file was deleted.

8 changes: 5 additions & 3 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"title": "INBOmd: Markdown Templates for INBO",
"version": "0.6.4",
"version": "0.6.5",
"license": "GPL-3.0",
"upload_type": "software",
"description": "<p>Several templates to generate reports, presentations and posters.<\/p>",
"keywords": [
"markdown",
"bookdown",
"corporate identity",
"template"
"template",
"inbo_version"
],
"access_right": "open",
"language": "eng",
Expand Down Expand Up @@ -47,5 +48,6 @@
{
"identifier": "inbo"
}
]
],
"publisher": "Research Institute for Nature and Forest (INBO)"
}
3 changes: 2 additions & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ keywords:
- bookdown
- corporate identity
- template
- inbo_version
contact:
- given-names: Thierry
family-names: Onkelinx
Expand All @@ -26,4 +27,4 @@ identifiers:
value: 10.5281/zenodo.842223
- type: url
value: https://inbo.github.io/INBOmd/
version: 0.6.4
version: 0.6.5
16 changes: 8 additions & 8 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Type: Package
Package: INBOmd
Title: Markdown Templates for INBO
Version: 0.6.4
Version: 0.6.5
Authors@R: c(
person("Thierry", "Onkelinx", , "thierry.onkelinx@inbo.be", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-8804-4216", affiliation = "Research Institute for Nature and Forest (INBO)")),
person("Floris", "Vanderhaeghe", , "floris.vanderhaeghe@inbo.be", role = "ctb",
comment = c(ORCID = "0000-0002-6378-6229", affiliation = "Research Institute for Nature and Forest (INBO)")),
person("Els", "Lommelen", , "els.lommelen@inbo.be", role = "ctb",
comment = c(ORCID = "0000-0002-3481-5684", affiliation = "Research Institute for Nature and Forest (INBO)")),
person("Research Institute for Nature and Forest (INBO)", , , "info@inbo.be", role = c("cph", "fnd"),
person("Research Institute for Nature and Forest (INBO)", , , "info@inbo.be", role = c("cph", "fnd", "pbl"),
comment = c(ROR = "00j54wy13"))
)
Description: Several templates to generate reports, presentations and
Expand All @@ -23,7 +23,7 @@ Depends:
Imports:
assertthat,
bookdown (>= 0.23.4),
checklist (>= 0.5.3),
citeme (>= 0.1.4),
dplyr,
fs,
gert,
Expand All @@ -44,13 +44,13 @@ Suggests:
quarto,
rstudioapi,
webshot
VignetteBuilder:
VignetteBuilder:
knitr
Additional_repositories: https://inbo.r-universe.dev
Config/checklist/communities: inbo
Config/checklist/keywords: markdown; bookdown; corporate identity;
template
Config/citeme/communities: inbo
Config/citeme/keywords: markdown; bookdown; corporate identity; template;
inbo_version
Config/roxygen2/version: 8.0.0
Encoding: UTF-8
Language: en-GB
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.3
9 changes: 3 additions & 6 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,9 @@ importFrom(assertthat,noNA)
importFrom(bookdown,epub_book)
importFrom(bookdown,gitbook)
importFrom(bookdown,pdf_book)
importFrom(checklist,ask_yes_no)
importFrom(checklist,citation_meta)
importFrom(checklist,menu_first)
importFrom(checklist,organisation)
importFrom(checklist,read_checklist)
importFrom(checklist,use_author)
importFrom(citeme,citation_meta)
importFrom(citeme,inbo_org_list)
importFrom(citeme,select_individual)
importFrom(dplyr,"%>%")
importFrom(dplyr,mutate_all)
importFrom(fs,dir_create)
Expand Down
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# INBOmd 0.6.5

* Use latest version of `citeme` and `checklist`.

# INBOmd 0.6.4

* Fix missing subtitle in citation in colophon of gitbook and epub.
Expand All @@ -9,7 +13,7 @@

# INBOmd 0.6.2

* `pdf_report()`, `gitbook()` and `epub_book()` gain an option to create
* `pdf_report()`, `gitbook()` and `epub_book()` gain an option to create
internal reports with a different colophon.
* `pdf_report()` and `gitbook()` gain a watermark argument.
It adds a text watermark in the margin of every page.
Expand Down
Loading
Loading