Skip to content

Commit c810c80

Browse files
committed
allow skipping with commit message
1 parent bc12ca7 commit c810c80

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ name: R-CMD-check
1010

1111
jobs:
1212
R-CMD-check:
13+
if: "! contains(github.event.head_commit.message, '[ci skip]')"
1314
runs-on: ${{ matrix.config.os }}
1415

1516
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
@@ -77,6 +78,7 @@ jobs:
7778
- name: Check
7879
env:
7980
_R_CHECK_CRAN_INCOMING_: false
81+
_R_CHECK_FORCE_SUGGESTS_: false
8082
run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "warning", check_dir = "check")
8183
shell: Rscript {0}
8284

.github/workflows/codecov.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ name: test-coverage
1010

1111
jobs:
1212
test-coverage:
13+
if: "! contains(github.event.head_commit.message, '[ci skip]')"
1314
runs-on: macOS-latest
1415
env:
1516
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)