Skip to content

Commit 6de94d3

Browse files
christinewangcwtkucar
authored and
tkucar
committed
chore(ci): delete circle CI validate hook (#330)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed
1 parent bf7b7d0 commit 6de94d3

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

.github/workflows/auto-release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Auto-Release
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
release:
12+
name: Release
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write # to be able to publish a GitHub release
16+
issues: write # to be able to comment on released issues
17+
pull-requests: write # to be able to comment on released pull requests
18+
id-token: write # to enable use of OIDC for npm provenance
19+
steps:
20+
- uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
24+
- uses: codfish/semantic-release-action@v3
25+
id: semantic
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.pre-commit-config.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ repos:
7575
always_run: true
7676
entry: bash -c "uv run --frozen --all-extras --dev deptry src --ignore DEP001"
7777

78-
7978
- repo: https://github.com/renovatebot/pre-commit-hooks
8079
rev: 39.161.4
8180
hooks:
@@ -86,10 +85,6 @@ repos:
8685
- id: uv-sync
8786
args: ["--frozen", "--all-packages", "--all-extras"]
8887

89-
- repo: https://github.com/zahorniak/pre-commit-circleci.git
90-
rev: v1.1.0
91-
hooks:
92-
- id: circleci_validate
9388
- repo: "local"
9489
hooks:
9590
- id: disallowed-words-check
@@ -103,6 +98,7 @@ repos:
10398
language: system
10499
pass_filenames: false
105100
always_run: true
101+
106102
- repo: https://github.com/hukkin/mdformat
107103
rev: 0.7.22 # Use the ref you want to point at
108104
hooks:

0 commit comments

Comments
 (0)