Skip to content

Commit

Permalink
chore(github): skip Markdown file changes for all workflows
Browse files Browse the repository at this point in the history
Documentation changes should not trigger build, test, etc.

Signed-off-by: Alexander Alemayhu <[email protected]>
  • Loading branch information
aalemayhu committed Dec 27, 2024
1 parent 6957756 commit 90f05c4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build Server
on:
push:
paths-ignore:
- '**.md'
- '**/*.md'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Lint
on:
push:
paths-ignore:
- '**.md'
- '**/*.md'

jobs:
build:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/stale_bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
name: 'Close stale issues and PRs'

on:
push:
paths-ignore:
- '**/*.md'
branches:
- main
schedule:
- cron: '30 1 * * *'
workflow_dispatch: # Allows manual triggering
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Integration Tests
on:
push:
paths-ignore:
- '**.md'
- '**/*.md'

jobs:
build:
Expand Down

0 comments on commit 90f05c4

Please sign in to comment.