Skip to content

Commit

Permalink
ci: Do not run CI checks when docs change
Browse files Browse the repository at this point in the history
  • Loading branch information
yiannistri committed Aug 20, 2024
1 parent 1428d9f commit 7496e0c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: E2E tests
on:
pull_request:
paths-ignore:
- 'docs/**'
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: golangci-lint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
paths-ignore:
- 'docs/**'

# Remove all permissions from GITHUB_TOKEN except metadata.
permissions: {}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Lint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
paths-ignore:
- 'docs/**'

# Remove all permissions from GITHUB_TOKEN except metadata.
permissions: {}
Expand Down

0 comments on commit 7496e0c

Please sign in to comment.