Skip to content

Commit 93102ef

Browse files
authored
Merge pull request #518 from trycompai/main
[comp] Production Deploy
2 parents f1b5240 + 596d8a7 commit 93102ef

12 files changed

+31
-22
lines changed

.github/workflows/auto-pr-to-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- COMP-*
1313
jobs:
1414
create-pull-request:
15-
runs-on: ubuntu-latest-xl
15+
runs-on: ubuntu-latest-custom
1616
continue-on-error: true
1717
permissions:
1818
pull-requests: write

.github/workflows/auto-pr-to-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
jobs:
77
create-pull-request:
8-
runs-on: ubuntu-latest-xl
8+
runs-on: ubuntu-latest-custom
99
permissions:
1010
pull-requests: write
1111
contents: write

.github/workflows/database-migrations-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
jobs:
1010
migrate:
1111
name: Run Database Migrations
12-
runs-on: ubuntu-latest-xl
12+
runs-on: ubuntu-latest-custom
1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@v4

.github/workflows/database-migrations-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
jobs:
1010
migrate:
1111
name: Run Database Migrations
12-
runs-on: ubuntu-latest-xl
12+
runs-on: ubuntu-latest-custom
1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
release:
1616
name: Release
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-latest-custom
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4

.github/workflows/trigger-tasks-deploy-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
jobs:
77
deploy:
8-
runs-on: ubuntu-latest-xl
8+
runs-on: ubuntu-latest-custom
99
steps:
1010
- uses: actions/checkout@v4
1111
- name: Use Node.js 20.x

.github/workflows/trigger-tasks-deploy-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
deploy:
10-
runs-on: ubuntu-latest-xl
10+
runs-on: ubuntu-latest-custom
1111
steps:
1212
- uses: actions/checkout@v4
1313

bun.lock

Lines changed: 14 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

commitlint.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
export default { extends: ['@commitlint/config-conventional'] };
1+
export default {
2+
extends: ['@commitlint/config-conventional'],
3+
rules: {
4+
'body-max-line-length': [0, 'always', Infinity], // Disable body line length rule
5+
'header-max-length': [0, 'always', Infinity], // Disable header line length rule
6+
},
7+
};

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"@semantic-release/commit-analyzer": "^13.0.1",
3131
"@semantic-release/git": "^10.0.1",
3232
"@semantic-release/github": "^11.0.2",
33+
"@semantic-release/npm": "^12.0.1",
3334
"@semantic-release/release-notes-generator": "^14.0.3",
3435
"@types/lodash": "^4.17.16",
3536
"husky": "^9.1.7",

0 commit comments

Comments
 (0)