Skip to content

Commit 1bdc1b7

Browse files
authored
Merge branch 'main' into unitTest
2 parents 981fc7b + ddf33c2 commit 1bdc1b7

File tree

23 files changed

+7410
-3248
lines changed

23 files changed

+7410
-3248
lines changed

.github/copilot-instructions.md

Lines changed: 453 additions & 0 deletions
Large diffs are not rendered by default.

.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

MAINTAINERS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Maintainers for Concerto
1+
# Maintainers for Template Playground
22

3-
This file is the official list of maintainers for the Concerto project.
3+
This file is the official list of maintainers for the Template Playground project.
44
Changes to this list should be submitted by submitting a pull request that changes this file, and requesting reviews on that pull request from all of the current maintainers.
55
The maintainers are listed in alphabetical order.
66

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)