Skip to content

Commit

Permalink
Merge branch 'master' into AI-2198-project-governance-teammate
Browse files Browse the repository at this point in the history
  • Loading branch information
saravmajestic committed Nov 20, 2024
2 parents f9bcb77 + 0c8d8a6 commit f6344bc
Show file tree
Hide file tree
Showing 7 changed files with 28,627 additions and 41,646 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ jobs:
fi
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}

- name: Send Slack notification
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
text: "Tag: ${{ github.ref_name }} release to Visual Studio Marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:"

release-openvsx-marketplace:
runs-on: ubuntu-latest
if: success() && startsWith( github.ref, 'refs/tags/')
Expand All @@ -54,3 +64,13 @@ jobs:
fi
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}

- name: Send Slack notification
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
text: "Tag: ${{ github.ref_name }} release to openvsx marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:"

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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"bugs": {
"url": "https://github.com/AltimateAI/vscode-dbt-power-user/issues"
},
"version": "0.48.5",
"version": "0.49.0",
"engines": {
"vscode": "^1.81.0"
},
Expand Down
5 changes: 4 additions & 1 deletion webview_panels/src/lib/altimate/altimate-components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,13 @@ declare interface LineageProviderProps {
sqlLineage?: SqlLineage;
staticLineage?: StaticLineage;
theme: "dark" | "light";
lineageType: "static" | "dynamic" | "sql";
lineageType: LineageType;
allowSyncColumnsWithDB?: boolean;
externalSidePanel?: boolean;
}

declare type LineageType = "static" | "dynamic" | "sql";

export declare const LoadingButton: ({ loading, ...rest }: Props_3) => JSX.Element;

export declare interface ModalArgs {
Expand All @@ -294,6 +296,7 @@ export declare enum ProjectGovernorAllowedFiles {
}

export declare interface ProjectGovernorCheck extends z.infer<typeof ProjectGovernorCheckSchema> {
id: string;
}

export declare interface ProjectGovernorCheckConfirmationResponse {
Expand Down
2 changes: 1 addition & 1 deletion webview_panels/src/lib/altimate/main.css

Large diffs are not rendered by default.

Loading

0 comments on commit f6344bc

Please sign in to comment.