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

minor change workflow #4

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
10 changes: 4 additions & 6 deletions .github/workflows/cypress-integration-tests-mysql-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ on:
- openmetadata-service/**
- openmetadata-clients/**
- common/**

permissions:
contents: read

Expand Down Expand Up @@ -86,7 +85,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Get Cypress Filter
id: get_cypress_filter
env:
Expand Down Expand Up @@ -146,9 +145,8 @@ jobs:
wait-on: "http://localhost:8585"
command: |
npx cypress run --config-file=cypress.config.ts \
--env grepTags='${{ steps.get_cypress_filter.outputs.e2eFilters }}',grepFilterSpecs=true \
--group cypress-ci-mysql-pr-oss-${{ github.run_id }}-${{github.run_attempt}} \
--parallel --record --browser chrome
--env grepTags="${{ steps.get_cypress_filter.outputs.e2eFilters }}",grepFilterSpecs=true \
--browser chrome
env:
CYPRESS_BASE_URL: "http://localhost:8585"
CYPRESS_RECORD_KEY: ${{ steps.cypress-project-id.outputs.CYPRESS_RECORD_KEY }}
Expand Down Expand Up @@ -205,4 +203,4 @@ jobs:
run: |
cd ./docker/development
docker compose down --remove-orphans
sudo rm -rf ${PWD}/docker-volume
sudo rm -rf ${PWD}/docker-volume
2 changes: 1 addition & 1 deletion openmetadata-ui/src/main/resources/ui/src/rest/tableAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const getTableVersions = async (id: string) => {
};

export const getTableVersion = async (id: string, version: string) => {
const url = `${BASE_URL}/${id}/versions/${version}`;
const url = `${BASE_URL}/${id}/versios/${version}`;

const response = await APIClient.get(url);

Expand Down
2 changes: 1 addition & 1 deletion openmetadata-ui/src/main/resources/ui/src/rest/tagAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const updateTag = async (data: Classification) => {

export const patchTag = async (id: string, data: Operation[]) => {
const response = await APIClient.patch<Operation[], AxiosResponse<Tag>>(
`/tags/${id}`,
`/tag/${id}`,
data
);

Expand Down
Loading