Skip to content

Commit d7d531f

Browse files
myieyehahn-kevrmunn
authored
Merge to main via GitHub (#1943)
* update labler to match the repo labels * Avoid choking Postgres with too-large input (#1925) Since passing the `keys` list to Postgres seems to be exceeding some limit on the size of an SQL query, let's just ask it for all project IDs and do the filtering afterwards if the `keys` list is large (> 100). * Add confirmation for project deletion (#1928) * Add dangerous actions handling to delete dialog - Update `promptDelete` in DialogsService to include a `dangerous` flag. - Modify delete dialog to require explicit confirmation for dangerous actions. - Improve Sandbox component with examples for delete dialog usage. * Confirm before deleting a project * Restructure delete-dialog options and add link to sync-status --------- Co-authored-by: Tim Haasdyk <[email protected]> * Remove UTF-8 BOM from all files except .verified.* (#1926) The .verified.* files are compared to output that will include a BOM, so they need to be left alone. * gitignore project-cache.json (#1936) * update git blame ignore revs --------- Co-authored-by: Kevin Hahn <[email protected]> Co-authored-by: Robin Munn <[email protected]> Co-authored-by: Kevin Hahn <[email protected]>
1 parent 0170ab7 commit d7d531f

File tree

617 files changed

+1048
-889
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

617 files changed

+1048
-889
lines changed

.actrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# configures act, a tool for running github actions locally
1+
# configures act, a tool for running github actions locally
22
# a .secrets file with a GITHUB_TOKEN is required
33
-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04
44
-P ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
f1332684a431a4bfe2479d7c2ef91f6df78a7c13
33
# ESLint and format frontend code
44
d41ac5b54ee6af03670838d8d46394b57cff5ce8
5+
# remove BOM again
6+
1be3ddb1667635708727f9bc0ffd9c18f4d69d28

.github/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 3
1+
version: 3
22

33
tasks:
44
integration-test:

.github/actions/playwright-tests/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Setup and run playwright tests
1+
name: Setup and run playwright tests
22
inputs:
33
lexbox-hostname:
44
description: 'The hostname of the lexbox server, should include port if not 80'

.github/actions/setup-k8s/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Setup and run lexbox k8s
1+
name: Setup and run lexbox k8s
22
inputs:
33
lexbox-api-tag:
44
required: true

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- '!frontend/pnpm-lock.yaml'
2323
- '!frontend/pnpm-workspace.yaml'
2424

25-
"📙 Platform.Bible extension":
25+
"📙 Platform.Bible":
2626
- changed-files:
2727
- any-glob-to-any-file:
2828
- 'platform.bible-extension/**'

.github/workflows/deploy-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy to Develop
1+
name: Deploy to Develop
22
run-name: Deploy ${{ github.ref_name }} to Develop
33
on:
44
workflow_dispatch:

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy
1+
name: Deploy
22
on:
33
workflow_dispatch:
44
inputs:

.github/workflows/package-cleanup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Package Cleanup
1+
name: Package Cleanup
22
on:
33
workflow_dispatch:
44

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ msal.json
2222
msal.cache
2323
artifacts/
2424
.vs/
25+
project-cache.json
2526

2627
#Verify
2728
*.received.*

0 commit comments

Comments
 (0)