File tree Expand file tree Collapse file tree 5 files changed +401
-23
lines changed Expand file tree Collapse file tree 5 files changed +401
-23
lines changed Original file line number Diff line number Diff line change 88 - name : Checkout
99 uses : actions/checkout@v2
1010 - name : Setup
11- uses : actions/setup-node@v1
11+ uses : actions/setup-node@v2
1212 with :
13- node-version : ' 14.x '
13+ node-version : ' 14'
1414 - uses : actions/cache@v1
1515 id : yarn-cache
1616 with :
3232 DATABASE_NAME : postgres
3333 services :
3434 postgres :
35- image : postgres:12
35+ image : postgres:13
3636 env :
3737 POSTGRES_USER : postgres
3838 POSTGRES_PASSWORD : postgres
4444 - name : Checkout
4545 uses : actions/checkout@v2
4646 - name : Setup
47- uses : actions/setup-node@v1
47+ uses : actions/setup-node@v2
4848 with :
49- node-version : ' 14.x '
49+ node-version : ' 14'
5050 - uses : actions/cache@v1
5151 id : yarn-cache
5252 with :
7070 - name : Checkout
7171 uses : actions/checkout@v2
7272 - name : Setup
73- uses : actions/setup-node@v1
73+ uses : actions/setup-node@v2
7474 with :
75- node-version : ' 14.x '
75+ node-version : ' 14'
7676 - uses : actions/cache@v1
7777 id : yarn-cache
7878 with :
8989 env :
9090 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
9191 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
92+ SLACK_WEBHOOK : ${{ secrets.ADMIN_SLACK_WEBHOOK }}
9293 run : yarn release
Original file line number Diff line number Diff line change 11{
22 "branches": [
3- "+([0-9])?(.{+([0-9]),x}).x",
4- "master",
5- "next",
6- "next-major"
3+ "master"
74 ],
85 "plugins": [
96 "@semantic-release/commit-analyzer",
107 "@semantic-release/release-notes-generator",
118 "@semantic-release/npm",
129 "@semantic-release/github",
13- "@semantic-release/git"
10+ "@semantic-release/git",
11+ [
12+ "semantic-release-slack-bot",
13+ {
14+ "notifyOnSuccess": true,
15+ "notifyOnFail": false
16+ }
17+ ]
1418 ]
1519}
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ An example project can be found in `example-app` directory.
5454
5555## Associations
5656
57- Currently only ` ManyToOne ` and ` OneToOne ` relationships are supported due to current AdminBro 's core limitations
57+ Currently only ` ManyToOne ` and ` OneToOne ` relationships are supported due to current AdminJS 's core limitations
5858for adapter integrations. ` OneToMany ` and ` ManyToMany ` relationships can still be achieved through a combination of custom components and hooks.
5959
6060## Contribution
Original file line number Diff line number Diff line change 6262 "jest" : " ^26.6.3" ,
6363 "reflect-metadata" : " ^0.1.13" ,
6464 "semantic-release" : " ^17.4.2" ,
65+ "semantic-release-slack-bot" : " ^2.1.1" ,
6566 "ts-jest" : " ^26.5.4" ,
6667 "ts-node" : " ^9.1.1" ,
6768 "tsconfig-paths" : " ^3.9.0" ,
You can’t perform that action at this time.
0 commit comments