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

JOSS publication #1885

Merged
merged 50 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
5609515
add boilerplate
IndrajeetPatil Oct 14, 2022
dcaf9d1
say more about need and benefits of lintr
IndrajeetPatil Dec 31, 2022
2b530f4
update PDF as well
IndrajeetPatil Dec 31, 2022
c7c242c
fix merge issues [skip ci]
IndrajeetPatil Dec 31, 2022
1e028bc
Merge branch 'main' into joss_paper
IndrajeetPatil Dec 31, 2022
63137a5
add a few examples
IndrajeetPatil Jan 1, 2023
e781ec6
try width [skip ci]
IndrajeetPatil Jan 1, 2023
a754769
discuss specific tags
IndrajeetPatil Jan 2, 2023
876e110
only show examples that lint
IndrajeetPatil Jan 3, 2023
0795e7f
add section on best practices
IndrajeetPatil Jan 4, 2023
1ca2bd6
Merge branch 'main' into joss_paper
IndrajeetPatil Jan 4, 2023
8769f88
retain TeX file as well [skip ci]
IndrajeetPatil Jan 5, 2023
7bbc693
address Jim's comment [skip ci]
IndrajeetPatil Jan 19, 2023
27b3c5a
Merge branch 'main' into joss_paper
IndrajeetPatil Sep 20, 2023
539b46a
Update paper/paper.Rmd
IndrajeetPatil Dec 2, 2023
c892f94
Merge branch 'main' into joss_paper
IndrajeetPatil Dec 2, 2023
d982058
mention tidyverse style guide up front
IndrajeetPatil Dec 2, 2023
1e406ec
we only need md document
IndrajeetPatil Dec 2, 2023
b313632
Update draft-pdf.yml
IndrajeetPatil Dec 2, 2023
ae30239
preserve YAML; add initial list of authors
IndrajeetPatil Dec 2, 2023
f9ed2af
initial acknowledgments
IndrajeetPatil Dec 2, 2023
2169c6c
change example for best practices
IndrajeetPatil Dec 2, 2023
78dfa5f
also add example that doesn't lint
IndrajeetPatil Dec 2, 2023
bec8cd6
Update paper/paper.Rmd [skip ci]
IndrajeetPatil Dec 6, 2023
221d872
Update paper/paper.Rmd [skip ci]
IndrajeetPatil Dec 6, 2023
16cc711
Update paper/paper.Rmd [skip ci]
IndrajeetPatil Dec 6, 2023
0022aaa
update ignore regex; update workflow
IndrajeetPatil Dec 6, 2023
13cbce0
add bib entry for style guide
IndrajeetPatil Dec 6, 2023
2b25a16
change a couple of examples
IndrajeetPatil Dec 6, 2023
d76dc95
add common mistakes section
IndrajeetPatil Dec 6, 2023
cd590c7
Merge branch 'main' into joss_paper
IndrajeetPatil Apr 23, 2024
eca00b1
michael has an orcid somehow :)
MichaelChirico May 2, 2024
e900fbc
Apply Michael's suggestions from code review
IndrajeetPatil May 2, 2024
02621e2
reknit
IndrajeetPatil May 2, 2024
754e0cc
add chunk labels
IndrajeetPatil May 2, 2024
eaddf19
move customizability segment to later
IndrajeetPatil May 7, 2024
5bdc0e2
Just create a new section to highlight extensibility
IndrajeetPatil May 7, 2024
2736b52
more on customization
IndrajeetPatil May 7, 2024
6c5b164
Merge branch 'main' into joss_paper
IndrajeetPatil May 7, 2024
cba907b
add citation to wiki page
IndrajeetPatil May 7, 2024
ab66e6f
Update paper/paper.Rmd [skip ci]
IndrajeetPatil May 7, 2024
eb9ddae
Update paper/paper.Rmd [skip ci]
IndrajeetPatil May 7, 2024
eebfe78
consistently use with-without lint pairing [skip ci]
IndrajeetPatil May 7, 2024
a4151a1
use latest, blazingly fast upload artifact action
IndrajeetPatil May 11, 2024
96302a1
authors: Jim first, everyone else alphabetical
IndrajeetPatil May 27, 2024
2111986
Merge branch 'main' into joss_paper
IndrajeetPatil May 27, 2024
8e768e0
Update paper.md
IndrajeetPatil Jun 11, 2024
a38d3e9
Merge branch 'main' into joss_paper
IndrajeetPatil Jun 21, 2024
5501154
update Rmd file for Jim's ORCID
IndrajeetPatil Jun 21, 2024
9040f67
Merge branch 'main' into joss_paper
IndrajeetPatil Aug 10, 2024
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
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@
^vignettes/[^-]+.gif$
^CRAN-SUBMISSION$
^CODE_OF_CONDUCT\.md$
^paper$
30 changes: 30 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# TODO: delete this file once the paper is published
on:
push:
branches: [main]
pull_request:
IndrajeetPatil marked this conversation as resolved.
Show resolved Hide resolved
branches: [main]

jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
# This should be the path to the paper within your repo.
paper-path: paper/paper.md

- name: Upload
uses: actions/upload-artifact@v1
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: paper/paper.pdf
Loading
Loading