Skip to content

Commit 010ce3b

Browse files
authored
Create cran-status-check.yml
Runs a check of data.table CRAN status Mon/Wed/Fri at 6am every week.
1 parent 8f4d89c commit 010ce3b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: check-cran-status
2+
3+
on:
4+
schedule:
5+
- cron: '0 6 * * 1,3,5' # Runs at 06:00 on Mon/Wed/Fri
6+
7+
jobs:
8+
check:
9+
runs-on: ubuntu-latest
10+
permissions: write-all # allows it to create issues
11+
env:
12+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
18+
- name: Check
19+
uses: dieghernan/cran-status-check@v2
20+
with:
21+
create-issue: "true"

0 commit comments

Comments
 (0)