-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6a6284
commit 004c7c9
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Scheduled 🕰️ | ||
|
||
on: | ||
schedule: | ||
- cron: '45 3 * * 0' | ||
workflow_dispatch: | ||
# Section to be removed before action is merged | ||
# note: branch below needs to point to main instead of new-verdepcheck-strategy | ||
push: | ||
branches: | ||
- verdepcheck_action | ||
# end of section to be removed | ||
|
||
jobs: | ||
dependency-test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
test-strategy: ["min_cohort", "min_isolated", "release", "max"] | ||
uses: insightsengineering/r.pkg.template/.github/workflows/verdepcheck.yaml@new-verdepcheck-strategy # Change back to "@main" | ||
name: Dependency Test - ${{ matrix.test-strategy }} 🔢 | ||
secrets: | ||
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | ||
GCHAT_WEBHOOK: ${{ secrets.GCHAT_WEBHOOK }} | ||
with: | ||
strategy: ${{ matrix.test-strategy }} | ||
additional-env-vars: | | ||
PKG_SYSREQS_DRY_RUN=true |