We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b390ee + 8829531 commit 1587dcdCopy full SHA for 1587dcd
1 file changed
.github/workflows/R-CMD-check.yaml
@@ -1,11 +1,15 @@
1
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
on:
4
+ workflow_dispatch:
5
push:
6
branches: [main, master]
7
pull_request:
8
-
9
+ schedule:
10
+ # execute once a week on monday
11
+ - cron: '0 1 * * 1'
12
+
13
name: R-CMD-check
14
15
jobs:
@@ -22,7 +26,7 @@ jobs:
22
26
- {os: windows-latest, r: 'release'}
23
27
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24
28
- {os: ubuntu-latest, r: 'release'}
25
- - {os: ubuntu-latest, r: 'oldrel-1'}
29
+ # - {os: ubuntu-latest, r: 'oldrel-1'} # one dependency no longer supports this
30
31
env:
32
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
0 commit comments