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

Add revdepcheck configuration #1228

Merged
merged 47 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
71d8a54
Initialize revdepcheck action
walkowif Apr 15, 2024
2e634d4
Empty
walkowif Apr 15, 2024
9e125dd
Update
walkowif Apr 15, 2024
dc5f4a8
Add revdepcheck to the scheduled workflow
walkowif Apr 16, 2024
76a565b
Move revdepcheck to a separate workflow
walkowif Apr 16, 2024
7b8ea4c
Empty
walkowif Apr 17, 2024
0f1a93f
Update
walkowif Apr 17, 2024
cb05871
empty commit
pawelru Apr 17, 2024
bbe9f13
Empty
walkowif Apr 17, 2024
158872c
Merge branch 'initialize-revdepcheck-action' of github.com:insightsen…
walkowif Apr 17, 2024
771c1da
Empty
walkowif Apr 17, 2024
632bf88
Merge branch 'main' into initialize-revdepcheck-action
pawelru Apr 17, 2024
d0c56de
empty commit
pawelru Apr 17, 2024
9bec7b9
empty commit
pawelru Apr 17, 2024
0ad4760
empty commit
pawelru Apr 18, 2024
62a3463
empty commit
pawelru Apr 18, 2024
9c9a0ab
empty commit
pawelru Apr 18, 2024
72eaf81
empty commit
pawelru Apr 23, 2024
b23e216
empty commit
pawelru Apr 23, 2024
3ccfb7c
test
pawelru Apr 23, 2024
4637ca4
test
pawelru Apr 23, 2024
fa9d232
empty commit
pawelru Apr 23, 2024
705de76
empty commit
pawelru Apr 24, 2024
212f782
empty commit
pawelru Apr 24, 2024
f845f7c
empty commit
pawelru Apr 24, 2024
f730563
empty commit
pawelru Apr 24, 2024
86c9d67
empty commit
pawelru Apr 24, 2024
46aec43
empty commit
pawelru Apr 24, 2024
5f2d522
empty commit
pawelru Apr 24, 2024
a07ee5b
empty commit
pawelru Apr 24, 2024
81094bc
empty commit
pawelru Apr 25, 2024
639c9d2
empty commit
pawelru Apr 25, 2024
d812dd4
empty commit
pawelru Apr 25, 2024
6d558a9
empty commit
pawelru Apr 25, 2024
5fa1c96
Empty
walkowif Apr 25, 2024
773df6f
Merge branch 'main' into initialize-revdepcheck-action
walkowif Apr 25, 2024
c995998
Empty
walkowif Apr 25, 2024
be09c3e
Merge branch 'initialize-revdepcheck-action' of github.com:insightsen…
walkowif Apr 25, 2024
c2215a0
Cleanup
walkowif Apr 25, 2024
4ec4b09
add chevron as revdep
pawelru Apr 25, 2024
e4c0847
Update
walkowif Apr 25, 2024
a3bc51b
Merge branch 'initialize-revdepcheck-action' of github.com:insightsen…
walkowif Apr 25, 2024
b2b305d
Update .github/workflows/on-demand.yaml
walkowif Apr 25, 2024
a4e0c5a
Update .github/workflows/on-demand.yaml
walkowif Apr 25, 2024
ee45ddc
typo
pawelru Apr 26, 2024
46bda09
Add missing propagations
walkowif Apr 26, 2024
9c5aea1
Merge branch 'main' into initialize-revdepcheck-action
cicdguy Apr 29, 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
3 changes: 3 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ pkgdown
# others
^renv$
^renv\.lock$
^.revdeprefs\.yaml$
^revdep$
^\.covrignore$
12 changes: 12 additions & 0 deletions .github/workflows/on-demand.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: On-demand 🧑‍🔬

on:
schedule:
- cron: '45 3 * * 0'
workflow_dispatch:

jobs:
revdepcheck:
name: revdepcheck ↩️
uses: insightsengineering/r.pkg.template/.github/workflows/revdepcheck.yaml@main
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ InputVads.Rdata
t_ae_ctc_SE.out
t_ae_ctc_ATEZOREL_SENBX.out
temp/

tests/testthat/_snaps/**/*.new.md
tests/testthat/_snaps/**/*.new.svg
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ repos:
.*\.svg|
.*\.xml|
(.*/|)\_pkgdown.y[a]?ml|
(.*/|)\.covrignore|
(.*/|)\.gitignore|
(.*/|)\.gitlab-ci\.y[a]?ml|
(.*/|)\.lintr|
Expand Down
2 changes: 2 additions & 0 deletions .revdeprefs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- insightsengineering/chevron
- insightsengineering/teal.modules.clinical
7 changes: 7 additions & 0 deletions revdep/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
checks
library
checks.noindex
library.noindex
cloud.noindex
data.sqlite
*.html
Loading