Skip to content

Commit 60d28a9

Browse files
authored
chore: workflow update (#33)
* chore: workflow update * chore: workflow update
1 parent 774dd45 commit 60d28a9

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.github/workflows/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
build:
1212
name: Build Docusaurus
1313
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read # to download the repository
16+
pages: write # to upload the build artifact
17+
id-token: write # to verify the deployment originates from an appropriate source
1418
steps:
1519
- uses: actions/checkout@v4
1620
with:

.github/workflows/lint.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: Lint
22
on:
33
push:
4+
branches:
5+
- master
6+
paths-ignore:
7+
- "**/*.md"
8+
49
pull_request:
10+
branches:
11+
- master
12+
paths-ignore:
13+
- "**/*.md"
514

615
jobs:
716
lint:

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ on:
33
pull_request:
44
types: [ opened, synchronize ]
55
branches:
6-
- main
6+
- master
7+
paths-ignore:
8+
- "**/*.md"
9+
710
workflow_dispatch:
811

912
jobs:

0 commit comments

Comments
 (0)