-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from inbo/checklist
Checklist
- Loading branch information
Showing
40 changed files
with
1,003 additions
and
553 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
.*_cache$ | ||
^_builds$ | ||
^_pkgdown.yml$ | ||
^_projects$ | ||
^_steps$ | ||
^.*\.png$ | ||
CONTRIBUTING.md | ||
^.*\.Rproj$ | ||
^.*\.png$ | ||
^CITATION\.cff$ | ||
^CODE_OF_CONDUCT\.md$ | ||
^LICENSE.md$ | ||
^NEWS\.md$ | ||
^README\.Rmd$ | ||
^\.Rproj\.user$ | ||
^\.git$ | ||
^\.github$ | ||
^\.httr-oauth$ | ||
^\.lintr$ | ||
^\.Rproj\.user$ | ||
^\.travis\.yml$ | ||
^\.zenodo\.json$ | ||
^_builds$ | ||
^_pkgdown.yml$ | ||
^_projects$ | ||
^_steps$ | ||
^appveyor\.yml$ | ||
^checklist.yml$ | ||
^CITATION\.cff$ | ||
^CODE_OF_CONDUCT\.md$ | ||
^codecov\.yml$ | ||
^data-raw$ | ||
^docs$ | ||
^LICENSE.md$ | ||
^man-roxygen$ | ||
^man\-roxygen$ | ||
^NEWS\.md$ | ||
^pkgdown$ | ||
^README\.Rmd$ | ||
^wercker\.yml$ | ||
CONTRIBUTING.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,37 @@ | ||
name: Releases | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
name: Create Release | ||
- v* | ||
workflow_run: | ||
workflows: ["check package on main with checklist"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
build: | ||
name: Create Release | ||
prepare: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tag: ${{ steps.gettag.outputs.tag }} | ||
body: ${{ steps.gettag.outputs.body }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Get tag message | ||
- uses: actions/checkout@v3 | ||
- name: Get tag | ||
run: | | ||
TAG_BODY=$(git tag --contains ${{ github.sha }} -n100 | awk '(NR>1)') | ||
echo "::set-output name=TAG_BODY::$TAG_BODY" | ||
id: tag-body | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
git fetch --tags --force | ||
TAG=$(git tag --contains $(git rev-parse HEAD)) | ||
echo "tag=$TAG" >> "$GITHUB_OUTPUT" | ||
echo "body=$TAG_BODY" >> "$GITHUB_OUTPUT" | ||
id: gettag | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
needs: prepare | ||
steps: | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
body: ${{ steps.tag-body.outputs.TAG_BODY }} | ||
draft: false | ||
prerelease: false | ||
name: Release ${{needs.prepare.outputs.tag}} | ||
tag: ${{needs.prepare.outputs.tag}} | ||
body: ${{needs.prepare.outputs.body}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
_builds | ||
_projects | ||
_steps | ||
.httr-oauth | ||
*.dbf | ||
*.doc* | ||
*.gddoc | ||
*.gdsheet | ||
*.gpkg | ||
*.html | ||
*.mdb | ||
*.shp* | ||
*.shx | ||
*.xls* | ||
*_cache | ||
*_files | ||
.DS_Store | ||
.RData | ||
.Renviron | ||
.Rhistory | ||
.Rproj.user | ||
.Ruserdata | ||
*_cache | ||
*.html | ||
.httr-oauth | ||
_builds | ||
_projects | ||
_steps | ||
docs | ||
inst/doc | ||
libs | ||
output | ||
renv/library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,45 @@ | ||
{ | ||
"title": "multimput: Using Multiple Imputation to Address Missing Data", | ||
"version": "0.2.11", | ||
"description": "Accompanying package for the paper: \"Working with population totals in the presence of with missing data\".", | ||
"version": "0.2.12", | ||
"license": "GPL-3.0", | ||
"upload_type": "software", | ||
"description": "<p>Accompanying package for the paper: Working with population totals in\nthe presence of missing data comparing imputation methods in terms of\nbias and precision. Published in 2017 in the Journal of Ornithology\nvolume 158 page 603–615 (doi:10.1007/s10336-016-1404-9).<\/p>", | ||
"keywords": [ | ||
"missing data, multiple imputation, Rubin" | ||
], | ||
"access_right": "open", | ||
"language": "eng", | ||
"contributors": [ | ||
{ | ||
"name": "Onkelinx, Thierry", | ||
"affiliation": "Research Institute for Nature and Forest (INBO)", | ||
"orcid": "0000-0001-8804-4216", | ||
"type": "ContactPerson" | ||
}, | ||
{ | ||
"name": "Research Institute for Nature and Forest (INBO)", | ||
"type": "RightsHolder" | ||
} | ||
], | ||
"creators": [ | ||
{ | ||
"name": "Onkelinx, Thierry", | ||
"orcid": "https://orcid.org/0000-0001-8804-4216" | ||
"affiliation": "Research Institute for Nature and Forest (INBO)", | ||
"orcid": "0000-0001-8804-4216" | ||
}, | ||
{ | ||
"name": "Devos, Koen", | ||
"orcid": "https://orcid.org/0000-0001-7265-6349" | ||
"affiliation": "Research Institute for Nature and Forest (INBO)", | ||
"orcid": "0000-0001-7265-6349" | ||
}, | ||
{ | ||
"name": "Quataert, Paul", | ||
"orcid": "https://orcid.org/0000-0002-6894-9402" | ||
"orcid": "0000-0002-6894-9402" | ||
} | ||
], | ||
"upload_type": "software", | ||
"access_right": "open", | ||
"license": "GPL-3.0", | ||
"communities": [ | ||
{ | ||
"identifier": "inbo" | ||
} | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Research Institute for Nature and Forest", | ||
"type": "RightsHolder" | ||
}, | ||
{ | ||
"name": "Onkelinx, Thierry", | ||
"type": "ContactPerson", | ||
"orcid": "https://orcid.org/0000-0001-8804-4216" | ||
} | ||
], | ||
"language": "eng" | ||
] | ||
} |
Oops, something went wrong.