Skip to content

Commit 4b6608e

Browse files
committed
feat: allow for generic /mycoder commands
1 parent 5878dd1 commit 4b6608e

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ permissions:
1212
contents: read
1313

1414
env:
15-
pnpm-version: 10.2.1
16-
node-version: 23
15+
PNPM_VERSION: 10.2.1
16+
NODE_VERSION: 23
1717

1818
jobs:
1919
ci:
@@ -23,11 +23,11 @@ jobs:
2323

2424
- uses: pnpm/action-setup@v2
2525
with:
26-
version: ${{ env.pnpm-version }}
26+
version: ${{ env.PNPM_VERSION }}
2727

2828
- uses: actions/setup-node@v4
2929
with:
30-
node-version: ${{ env.node-version }}
30+
node-version: ${{ env.NODE_VERSION }}
3131

3232
- name: Install dependencies
3333
run: pnpm install --frozen-lockfile

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- main
6+
- release
77

88
permissions:
99
contents: write
@@ -12,8 +12,8 @@ permissions:
1212
packages: write
1313

1414
env:
15-
pnpm-version: 10.2.1
16-
node-version: 23
15+
PNPM_VERSION: 10.2.1
16+
NODE_VERSION: 23
1717

1818
jobs:
1919
release:
@@ -29,12 +29,12 @@ jobs:
2929
- name: Setup pnpm
3030
uses: pnpm/action-setup@v2
3131
with:
32-
version: ${{ env.pnpm-version }}
32+
version: ${{ env.PNPM_VERSION }}
3333

3434
- name: Setup Node.js
3535
uses: actions/setup-node@v4
3636
with:
37-
node-version: ${{ env.node-version }}
37+
node-version: ${{ env.NODE_VERSION }}
3838
cache: 'pnpm'
3939

4040
- name: Install dependencies
@@ -53,4 +53,4 @@ jobs:
5353
env:
5454
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5555
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
56-
run: pnpm semantic-release
56+
run: pnpm semantic-release

.husky/commit-msg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
# Validate commit message with commitlint
52
npx --no -- commitlint --edit $1

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
echo "Running pre-commit checks..."
52

63
# Run lint-staged for code formatting and linting

0 commit comments

Comments
 (0)