diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index f15e3c86..482bc830 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -31,7 +31,7 @@ jobs: VRT_BRANCHNAME: ${{ github.head_ref || github.ref_name }} VRT_CIBUILDID: "Github run_id: ${{ github.run_id }}" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report diff --git a/src/components/ProjectForm/ProjectForm.tsx b/src/components/ProjectForm/ProjectForm.tsx index f9754b73..913aaa16 100644 --- a/src/components/ProjectForm/ProjectForm.tsx +++ b/src/components/ProjectForm/ProjectForm.tsx @@ -130,6 +130,35 @@ export const ProjectForm: React.FunctionComponent = () => { }); }} /> + + PostgreSQL{" "} + + SIMILAR TO Regular Expression + + + } + value={project.protectedBranch || ""} + onChange={(event: React.ChangeEvent) => + setProjectEditState(projectDispatch, { + ...project, + protectedBranch: event.target.value, + }) + } + /> ;