Skip to content

Commit 2a7bdab

Browse files
IndrajeetPatilMichaelChiricojimhester
authored
JOSS publication (#1885)
* add boilerplate * say more about need and benefits of lintr * update PDF as well * fix merge issues [skip ci] * add a few examples * try width [skip ci] * discuss specific tags * only show examples that lint * add section on best practices * retain TeX file as well [skip ci] * address Jim's comment [skip ci] * Update paper/paper.Rmd Co-authored-by: Michael Chirico <[email protected]> * mention tidyverse style guide up front * we only need md document * Update draft-pdf.yml * preserve YAML; add initial list of authors * initial acknowledgments * change example for best practices * also add example that doesn't lint * Update paper/paper.Rmd [skip ci] Co-authored-by: Michael Chirico <[email protected]> * Update paper/paper.Rmd [skip ci] Co-authored-by: Michael Chirico <[email protected]> * Update paper/paper.Rmd [skip ci] Co-authored-by: Michael Chirico <[email protected]> * update ignore regex; update workflow * add bib entry for style guide * change a couple of examples * add common mistakes section * michael has an orcid somehow :) * Apply Michael's suggestions from code review Co-authored-by: Michael Chirico <[email protected]> * reknit * add chunk labels * move customizability segment to later * Just create a new section to highlight extensibility * more on customization * add citation to wiki page * Update paper/paper.Rmd [skip ci] Co-authored-by: Michael Chirico <[email protected]> * Update paper/paper.Rmd [skip ci] Co-authored-by: Michael Chirico <[email protected]> * consistently use with-without lint pairing [skip ci] * use latest, blazingly fast upload artifact action * authors: Jim first, everyone else alphabetical * Update paper.md Co-authored-by: Jim Hester <[email protected]> * update Rmd file for Jim's ORCID --------- Co-authored-by: Michael Chirico <[email protected]> Co-authored-by: Michael Chirico <[email protected]> Co-authored-by: Jim Hester <[email protected]>
1 parent 5990da6 commit 2a7bdab

File tree

6 files changed

+2576
-0
lines changed

6 files changed

+2576
-0
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@
2929
^vignettes/[^-]+.gif$
3030
^CRAN-SUBMISSION$
3131
^CODE_OF_CONDUCT\.md$
32+
^paper$

.github/workflows/draft-pdf.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# TODO: delete this file once the paper is published
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
8+
jobs:
9+
paper:
10+
runs-on: ubuntu-latest
11+
name: Paper Draft
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Build draft PDF
17+
uses: openjournals/openjournals-draft-action@master
18+
with:
19+
journal: joss
20+
# This should be the path to the paper within your repo.
21+
paper-path: paper/paper.md
22+
23+
- name: Upload
24+
uses: actions/upload-artifact@v4
25+
with:
26+
name: paper
27+
# This is the output path where Pandoc will write the compiled
28+
# PDF. Note, this should be the same directory as the input
29+
# paper.md
30+
path: paper/paper.pdf

0 commit comments

Comments
 (0)