Skip to content

Commit

Permalink
CI: Ignore pushes to *.md files
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Hotze <[email protected]>
  • Loading branch information
florian-h05 committed Dec 30, 2024
1 parent faa4d0e commit 3c65e89
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ name: CI Build

on:
push:
branches: [ "main" ]
branches:
- 'main'
paths-ignore:
- '**/*.md'
pull_request:
branches: [ "main" ]
branches:
- 'main'
paths-ignore:
- '**/*.md'
workflow_dispatch:

permissions:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: CI Publish

on:
push:
branches: [ "main" ]
branches:
- 'main'
paths-ignore:
- '**/*.md'
# Publish semver tags as releases.
tags: [ 'v*.*' ]

Expand Down

0 comments on commit 3c65e89

Please sign in to comment.