Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,11 @@ jobs:
- uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: playwright-recordings ${{ matrix.runner }}
name: playwright-recordings-${{ github.event.pull_request.number || github.ref }}-${{ matrix.runner }}
path: |
playwright/
vscode/test-results/
overwrite: true

build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/utils/plg-es-access.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// PLG ES access is disabled after July 23, 2025 10:00 AM PST
const PLG_ES_ACCESS_DISABLE_DATE = new Date('2025-07-23T18:00:00.000Z')
const PLG_ES_ACCESS_DISABLE_DATE = new Date('2025-07-24T18:00:00.000Z')

export function isPlgEsAccessDisabled(): boolean {
return new Date() > PLG_ES_ACCESS_DISABLE_DATE
Expand Down
Loading