Skip to content

Commit

Permalink
Merge pull request #3453 from mulkieran/skip-github-actions-for-packit
Browse files Browse the repository at this point in the history
Ignore packit/TMT files
  • Loading branch information
mulkieran authored Sep 25, 2023
2 parents bc91c2d + a419983 commit 0edd1e8
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 23 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ on:
paths:
- '**/Cargo.toml'
- '.github/workflows/cargo.yml'
- ".packit.yaml"
pull_request:
branches:
- master
paths:
- '**/Cargo.toml'
- '.github/workflows/cargo.yml'
- ".packit.yaml"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ on:
- '**/README.md'
- 'README_tests.md'
- 'tests/**'
- ".packit.yaml"
- '.packit.yaml'
- 'plans/**'
- 'test/**'
pull_request:
branches:
- master
Expand All @@ -20,7 +22,9 @@ on:
- '**/README.md'
- 'README_tests.md'
- 'tests/**'
- ".packit.yaml"
- '.packit.yaml'
- 'plans/**'
- 'test/**'

workflow_dispatch:

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ on:
- '**/README.md'
- 'README_tests.md'
- 'tests/**'
- ".packit.yaml"
- '.packit.yaml'
- 'plans/**'
- 'test/**'
pull_request:
branches:
- master
Expand All @@ -20,7 +22,9 @@ on:
- '**/README.md'
- 'README_tests.md'
- 'tests/**'
- ".packit.yaml"
- '.packit.yaml'
- 'plans/**'
- 'test/**'

workflow_dispatch:

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ on:
- '**/README.md'
- 'README_tests.md'
- 'tests/**'
- ".packit.yaml"
- '.packit.yaml'
- 'plans/**'
- 'test/**'
pull_request:
branches:
- master
Expand All @@ -20,7 +22,9 @@ on:
- '**/README.md'
- 'README_tests.md'
- 'tests/**'
- ".packit.yaml"
- '.packit.yaml'
- 'plans/**'
- 'test/**'

workflow_dispatch:

Expand Down
32 changes: 17 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,23 @@ repository = "https://github.com/stratis-storage/stratisd/"
keywords = ["Linux", "filesystem", "storage"]
categories = ["filesystem"]
exclude = [
"_typos.toml",
"docs",
"dracut",
".clippy.toml",
".gitignore",
".githooks/*",
".github/*",
".packit.yaml",
"systemd",
"tests",
"udev",
"Makefile",
"Makefile_dependencies",
"README_tests.md",
"stratisd.conf"
"/.clippy.toml",
"/.githooks",
"/.github",
"/.gitignore",
"/.packit.yaml",
"/_typos.toml",
"/Makefile",
"/Makefile_dependencies",
"/README_tests.md",
"/docs",
"/dracut",
"/plans",
"/stratisd.conf",
"/systemd",
"/test",
"/tests",
"/udev"
]

[[bin]]
Expand Down

0 comments on commit 0edd1e8

Please sign in to comment.