Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finalize CRAN submission, v0.1.1 #163

Merged
merged 31 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
039ab94
Begin release checks
NeuroShepherd Nov 15, 2024
573ad03
Fix DESCRIPTION file fields
NeuroShepherd Nov 15, 2024
fdf3c96
Update README
NeuroShepherd Nov 15, 2024
e7862d8
Version 0.1.0
NeuroShepherd Nov 15, 2024
2dcc97b
Release checks for version 0.1.0
NeuroShepherd Nov 15, 2024
492c4a5
Create vignette detailing package options
NeuroShepherd Nov 17, 2024
917380f
Update pkgdown
NeuroShepherd Nov 17, 2024
7c14688
Fix indentation in yaml
NeuroShepherd Nov 17, 2024
ed07c54
fix typo
NeuroShepherd Nov 17, 2024
65b4373
Clean typos
NeuroShepherd Nov 17, 2024
5db6467
Edit headers
NeuroShepherd Nov 17, 2024
a54d0aa
Remove whitespace
NeuroShepherd Nov 17, 2024
98f5c6c
Run styler on package
NeuroShepherd Nov 17, 2024
6fd80a0
Add CRAN comment
NeuroShepherd Nov 18, 2024
430f824
Fix distribution plotting bug
NeuroShepherd Nov 18, 2024
7f186ff
Remove plot outlier removal UI
NeuroShepherd Nov 18, 2024
0613938
Remove rendered html report on session end
NeuroShepherd Nov 18, 2024
4e9f9a4
Fix error when only 1 test is selected (#166)
NeuroShepherd Dec 26, 2024
7967077
Use group checkbox for selecting which tests to run
NeuroShepherd Dec 26, 2024
57eff83
Update docs
NeuroShepherd Jan 19, 2025
33355ef
Update vignettes and home documentation
NeuroShepherd Jan 19, 2025
3228cea
Create citation files and processing (#167)
NeuroShepherd Jan 19, 2025
c679490
Update README
NeuroShepherd Jan 20, 2025
8d28f35
Add DOI from Zenodo
NeuroShepherd Jan 20, 2025
5357acc
Run citation workflow on development branch
NeuroShepherd Jan 20, 2025
ccce5ec
Move DOI
NeuroShepherd Jan 20, 2025
99a634e
Update CITATION.cff
invalid-email-address Jan 20, 2025
e7a04d8
Quote DOI in inst/CITATION file
NeuroShepherd Jan 20, 2025
ac271c2
Update CITATION.cff
invalid-email-address Jan 20, 2025
295e77c
Increment version number to 0.1.1
NeuroShepherd Jan 20, 2025
84f8682
Update CITATION.cff
invalid-email-address Jan 20, 2025
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
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ $run_dev.*
^.covrignore$
^codecov\.yml$
^.lintr$
^cran-comments\.md$
^CITATION\.cff$
4 changes: 2 additions & 2 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
source("renv/activate.R")
options(shiny.autoload.r=FALSE)
options(shiny.autoload.r = FALSE)
options(
list(
ordinalsimr.default_iterations = 20,
ordinalsimr.default_size_min = 30,
ordinalsimr.default_size_max = 35,
ordinalsimr.default_ratio = "50:50",
ordinalsimr.default_distributions = data.frame(c(0.4,0.3,0.3), c(0.8,0.1,0.1))
ordinalsimr.default_distributions = data.frame(c(0.4, 0.3, 0.3), c(0.8, 0.1, 0.1))
)
)
58 changes: 58 additions & 0 deletions .github/workflows/update-citation-cff.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# The action runs when:
# - A new release is published
# - The DESCRIPTION or inst/CITATION are modified
# - Can be run manually
# For customizing the triggers, visit https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows
on:
release:
types: [published]
push:
branches: [master, main, development]
paths:
- DESCRIPTION
- inst/CITATION
workflow_dispatch:

name: Update CITATION.cff

jobs:
update-citation-cff:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::cffr
any::V8

- name: Update CITATION.cff
run: |

library(cffr)

# Customize with your own code
# See https://docs.ropensci.org/cffr/articles/cffr.html

# Write your own keys
mykeys <- list()

# Create your CITATION.cff file
cff_write(keys = mykeys)

shell: Rscript {0}

- name: Commit results
run: |
git config --global user.name "github-actions"
git config --global user.email "[email protected]"
git add CITATION.cff
git commit -m 'Update CITATION.cff' || echo "No changes to commit"
git push origin || echo "No changes to commit"



Loading
Loading