Skip to content

Commit

Permalink
Enable checks for workflow_dispatch event (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif authored Nov 9, 2022
1 parent f7960b7 commit ab4d8c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
with:
additional-r-cmd-check-params: --as-cran
coverage:
name: Coverage πŸ“”
name: Coverage πŸ“”
uses: insightsengineering/r.pkg.template/.github/workflows/test-coverage.yaml@main
secrets:
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
linter:
if: github.event_name == 'pull_request'
if: github.event_name != 'push'
name: SuperLinter πŸ¦Έβ€β™€οΈ
uses: insightsengineering/r.pkg.template/.github/workflows/linter.yaml@main
roxygen:
Expand All @@ -46,11 +46,11 @@ jobs:
name: gitleaks πŸ’§
uses: insightsengineering/r.pkg.template/.github/workflows/gitleaks.yaml@main
spelling:
if: github.event_name == 'pull_request'
if: github.event_name != 'push'
name: Spell Check πŸ†Ž
uses: insightsengineering/r.pkg.template/.github/workflows/spelling.yaml@main
links:
if: github.event_name == 'pull_request'
if: github.event_name != 'push'
name: Check URLs 🌐
uses: insightsengineering/r.pkg.template/.github/workflows/links.yaml@main
vbump:
Expand All @@ -66,12 +66,12 @@ jobs:
name: License Check πŸƒ
uses: insightsengineering/r.pkg.template/.github/workflows/licenses.yaml@main
style:
if: github.event_name == 'pull_request'
if: github.event_name != 'push'
name: Style Check πŸ‘—
uses: insightsengineering/r.pkg.template/.github/workflows/style.yaml@main
with:
auto-update: true
grammar:
if: github.event_name == 'pull_request'
if: github.event_name != 'push'
name: Grammar Check πŸ”€
uses: insightsengineering/r.pkg.template/.github/workflows/grammar.yaml@main

0 comments on commit ab4d8c7

Please sign in to comment.