Skip to content

Commit 32e5680

Browse files
committed
Fix wrong branch name in CI action
1 parent 8216dd9 commit 32e5680

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
77
# using the `master` branch as the default branch.
88
push:
9-
branches: [main]
9+
branches: [master]
1010
paths: ['docs/**']
1111

1212
# Allows you to run this workflow manually from the Actions tab

.github/workflows/pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [main]
3+
branches: [master]
44
pull_request:
55

66
name: Test

docs/.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ export default defineConfig({
3232
{
3333
text: 'Advanced Features',
3434
items: [
35-
// { text: 'ID Generation', link: '/api/mutations' },
35+
// { text: 'ID Generation', link: '/api/mutations' },
3636
{ text: 'Soft Delete', link: '/features/soft-delete' },
37-
// { text: 'Logging', link: '/api/mutations' },
37+
// { text: 'Logging', link: '/api/mutations' },
3838
]
3939
},
4040
// {

0 commit comments

Comments
 (0)