Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/deploy-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
run: |
npm install
npm run build
npm run util:update-3rd-party-licenses

git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
Expand All @@ -74,6 +75,7 @@ jobs:

# The "|| true" prevents failure if there are no changes
git add package-lock.json || true
git add **/THIRD-PARTY-LICENSES.md || true

# The release-please PR only updates when there are new deployable
# commits, e.g., fixes, features, or breaking changes. This is fine
Expand Down
2 changes: 2 additions & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# prevents modifying licenses
THIRD-PARTY-LICENSES.md
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**/*.d.ts
**/dist
**/.turbo

# prevents modifying licenses
THIRD-PARTY-LICENSES.md
Loading