Skip to content

Commit

Permalink
Update cruft to apply new workflow trigger config
Browse files Browse the repository at this point in the history
  • Loading branch information
cutoffthetop committed Feb 2, 2024
1 parent eb8a723 commit 25772c2
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"checkout": null,
"commit": "13034bb01a8da263e669936438ca099ea4e56afb",
"commit": "f7dd31d03fb2fb3a21f75407b71f757e99a2bf67",
"context": {
"cookiecutter": {
"project_name": "common",
Expand Down
9 changes: 8 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
version: 2
updates:
- package-ecosystem: "github-actions"
allow:
- dependency-type: "all"
directory: "/"
open-pull-requests-limit: 1
schedule:
interval: "monthly"
- package-ecosystem: "pip"
allow:
- dependency-type: "all"
directory: "/"
open-pull-requests-limit: 1
schedule:
interval: "weekly"
interval: "daily"
4 changes: 3 additions & 1 deletion .github/workflows/cookiecutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Cookiecutter

on:
push:
branches: ["main"]
pull_request:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/cve-scan.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: CVE Scan

on:
push:
pull_request:
schedule:
- cron: '0 2 * * *'
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Documentation

on:
push:
branches: ["main"]
tags: ["**"]
workflow_dispatch:

env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Linting

on:
push:
pull_request:
workflow_dispatch:

env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/open-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: OpenCoDE
on:
push:
branches: ["main"]
tags: ["**"]
workflow_dispatch:

jobs:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Testing

on:
push:
pull_request:
workflow_dispatch:

env:
Expand Down

0 comments on commit 25772c2

Please sign in to comment.