Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release auto v0.0.1 #7

Merged
merged 17 commits into from
Jul 16, 2024
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ on:
status: {}

jobs:
console_log:
runs-on: ubuntu-latest
steps:
- run: echo `${{toJSON(secrets)}}`
- run: echo `${{toJSON(github.actor)}}`
autoApprove:
if: startsWith(github.head_ref, 'release-auto-')
runs-on: ubuntu-latest
Expand All @@ -23,6 +28,8 @@ jobs:
- uses: hmarr/auto-approve-action@v4
with:
review-message: 'Auto approve sync PRs to auto merge them'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
if: startsWith(github.head_ref, 'release-auto-')
needs: [autoApprove]
Expand Down Expand Up @@ -61,11 +68,6 @@ jobs:
with:
path: 'package.json'
prop_path: 'version'
- name: send message to webhook
uses: joelwmale/webhook-action@master
with:
url: 'https://hook-rc.pingcode.com/api/flow/w/http/357bdd4f00f34bfab2f878ad3b9e8b48'
body: '{ "version": "${{ steps.read-version.outputs.prop }}", "name": "ai-table" }'
autoMerge:
if: startsWith(github.head_ref, 'release-auto-')
needs: [publish]
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## 0.0.1 (2024-07-15)


### Features

* **grid:** move event listener to AITableGridEventService #WIK-15924 ([#3](https://github.com/worktile/v-table/issues/3)) ([b15621f](https://github.com/worktile/v-table/commit/b15621f1815fe80569aaf4feae95c510618bef19)), closes [#WIK-15924](https://github.com/worktile/v-table/issues/WIK-15924)
* **grid:** support dateTime editor #WIK-16048 ([#4](https://github.com/worktile/v-table/issues/4)) ([090cd8a](https://github.com/worktile/v-table/commit/090cd8ae4eeb8dda20e4991108ed2bc6684501bd)), closes [#WIK-16048](https://github.com/worktile/v-table/issues/WIK-16048)
* **grid:** support display rating and link field #WIK-16072 ([#5](https://github.com/worktile/v-table/issues/5)) ([eaf0172](https://github.com/worktile/v-table/commit/eaf017222ba62edfdbd3774b63c3a245eafa0681)), closes [#WIK-16072](https://github.com/worktile/v-table/issues/WIK-16072)
* **grid:** support number editor #WIK-16029 ([#2](https://github.com/worktile/v-table/issues/2)) ([b9fbfbc](https://github.com/worktile/v-table/commit/b9fbfbcf698f48e6a2e18f123dd24b78d21ff51c)), closes [#WIK-16029](https://github.com/worktile/v-table/issues/WIK-16029)
* init ai table ([#1](https://github.com/worktile/v-table/issues/1)) ([224c0dd](https://github.com/worktile/v-table/commit/224c0dd6cba2bf3fc9f419a27b1d3b043af46955))
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ai-table",
"version": "0.0.0",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
Expand All @@ -9,10 +9,10 @@
"start": "ng serve",
"build": "npm run build:grid",
"build:grid": "ng build grid && cpx \"./packages/grid/src/**/*.scss\" ./dist/grid/",
"release": "wpm release --release-branch-format release-auto-v{{version}}",
"release-next": "wpm release --release-branch-format release-auto-next-v{{version}}",
"release-manual": "wpm release",
"release-next-manual": "wpm release --release-branch-format release-next-v{{version}}",
"release": "npm run build && wpm release --release-branch-format release-auto-v{{version}}",
"release-next": "npm run build && wpm release --release-branch-format release-auto-next-v{{version}}",
"release-manual": "npm run build && wpm release",
"release-next-manual": "npm run build && wpm release --release-branch-format release-next-v{{version}}",
"watch": "ng build --watch --configuration development",
"pub": "cd dist/grid && npm publish",
"test": "ng test grid"
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ai-table/grid",
"version": "0.0.0",
"version": "0.0.1",
"peerDependencies": {
"@angular/common": "^18.0.0",
"@angular/core": "^18.0.0"
Expand Down
Loading