Skip to content

Commit fdd8e56

Browse files
authored
Merge branch 'main' into shubhraj/i726/cleanup-pr-caches
2 parents 90e2c62 + 1272f54 commit fdd8e56

File tree

19 files changed

+6769
-3169
lines changed

19 files changed

+6769
-3169
lines changed

.github/workflows/e2e.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ concurrency:
1212
group: e2e-${{ github.head_ref || github.ref }}
1313
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
1414

15+
permissions:
16+
contents: read
17+
1518
jobs:
1619
e2e:
1720
name: E2E Tests

.github/workflows/pr-check.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ concurrency:
99
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1010
cancel-in-progress: true
1111

12+
permissions:
13+
contents: read
14+
1215
jobs:
1316
build:
1417
name: Build playground

.github/workflows/stale.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ on:
33
schedule:
44
- cron: '30 1 * * *'
55

6+
permissions:
7+
contents: read
8+
69
jobs:
710
stale:
811
runs-on: ubuntu-latest
12+
permissions:
13+
issues: write
14+
pull-requests: write
915
steps:
1016
- uses: actions/stale@v9
1117
with:

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ concurrency:
1212
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1313
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
1414

15+
permissions:
16+
contents: read
17+
1518
jobs:
1619
build:
1720
name: Build playground

e2e/navigation.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ test.describe('Navigation', () => {
2929
await homeLink.click();
3030

3131
// Should be back at the playground
32-
await expect(page).toHaveURL('/');
32+
await expect(page).toHaveURL(/\/$/);
3333
});
3434

3535
test('should have Help dropdown menu', async ({ page }) => {

0 commit comments

Comments
 (0)