Skip to content

Commit 1fdc730

Browse files
authored
ci: 👷 general clean up and fixes to workflows (#36)
## Description I did some small fixes and clean ups to the workflows. For instance, removed some of the workflows we aren't using right now (nor will likely use in the near-to-distant future). Closes #30, closes #6 <!-- Select quick/in-depth as necessary --> This PR needs a quick review.
2 parents b2f8daa + a3e929a commit 1fdc730

File tree

6 files changed

+18
-55
lines changed

6 files changed

+18
-55
lines changed

.github/_project-dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: pip
44
directory: /
55
schedule:
6-
interval: weekly
6+
interval: monthly
77
versioning-strategy: increase-if-necessary
88
commit-message:
99
prefix: build

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: github-actions
44
directory: /
55
schedule:
6-
interval: weekly
6+
interval: monthly
77
commit-message:
88
prefix: ci
99
include: scope

.github/sync.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ group:
2323
dest: .github/pull_request_template.md
2424

2525
# Actions
26-
- source: .github/workflows/
27-
dest: .github/workflows/
28-
deleteOrphaned: true
29-
exclude: |
30-
sync-files.yml
26+
- source: .github/workflows/add-to-project.yml
27+
dest: .github/workflows/add-to-project.yml
28+
- source: .github/workflows/build-package.yml
29+
dest: .github/workflows/build-package.yml
30+
- source: .github/workflows/build-website.yml
31+
dest: .github/workflows/build-website.yml
32+
- source: .github/workflows/update-version.yml
33+
dest: .github/workflows/update-version.yml
3134
- source: .github/_project-dependabot.yml
3235
dest: .github/dependabot.yml
3336

.github/workflows/delete-environment.yml

-28
This file was deleted.

.github/workflows/puml-to-svg.yml

-12
This file was deleted.

.pre-commit-config.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# See https://pre-commit.com for more information
22
# See https://pre-commit.com/hooks.html for more hooks
33
ci:
4-
autofix_commit_msg: "chore(pre-commit): :pencil2: automatic fixes"
5-
autoupdate_commit_msg: "ci(pre-commit): :construction_worker: update pre-commit CI version"
4+
autofix_commit_msg: "chore(pre-commit): :pencil2: automatic fixes"
5+
autoupdate_commit_msg: "ci(pre-commit): :construction_worker: update pre-commit CI version"
66

77
repos:
8-
- repo: https://github.com/pre-commit/pre-commit-hooks
8+
- repo: https://github.com/pre-commit/pre-commit-hooks
99
rev: v5.0.0
1010
hooks:
11-
- id: trailing-whitespace
12-
- id: end-of-file-fixer
11+
- id: trailing-whitespace
12+
- id: end-of-file-fixer
1313

14-
- repo: https://github.com/commitizen-tools/commitizen
15-
rev: v3.30.0
14+
- repo: https://github.com/commitizen-tools/commitizen
15+
rev: v4.1.0
1616
hooks:
17-
- id: commitizen
17+
- id: commitizen

0 commit comments

Comments
 (0)