Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not run regress workflows on benign changes #5156

Merged
merged 1 commit into from Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/linux-32bit-build-and-test.yaml
Expand Up @@ -4,7 +4,15 @@ on:
branches:
- main
- prerelease_test
paths-ignore:
- '**.md'
- 'LICENSE*'
- NOTICE
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE*'
- NOTICE
jobs:
config:
runs-on: ubuntu-latest
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/linux-build-and-test-ignored.yaml
@@ -0,0 +1,23 @@
# Ignoring version of the corresponding workflow. These files are
# needed to run required workflows even when the real workflow is not
# executed because some files were ignored.
name: Regression
on:
push:
branches:
- prerelease_test
paths:
- '**.md'
- 'LICENSE*'
- NOTICE
pull_request:
paths:
- '**.md'
- 'LICENSE*'
- NOTICE
jobs:
regress:
runs-on: ubuntu-latest
steps:
- run: |
echo "No build required"
8 changes: 8 additions & 0 deletions .github/workflows/linux-build-and-test.yaml
Expand Up @@ -11,7 +11,15 @@ on:
branches:
- main
- prerelease_test
paths-ignore:
- '**.md'
- 'LICENSE*'
- NOTICE
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE*'
- NOTICE
jobs:
matrixbuilder:
runs-on: ubuntu-latest
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/shellcheck-ignored.yaml
@@ -0,0 +1,22 @@
# Ignoring version of the corresponding workflow. These files are
# needed to run required workflows even when the real workflow is not
# executed because some files were ignored.
name: Shellcheck
on:
pull_request:
paths-ignore:
- '**.sh'
- .github/workflows/shellcheck.yaml
push:
branches:
- prerelease_test
paths-ignore:
- '**.sh'
- .github/workflows/shellcheck.yaml
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- run: |
echo "No build required"
6 changes: 6 additions & 0 deletions .github/workflows/shellcheck.yaml
Expand Up @@ -2,10 +2,16 @@
name: Shellcheck
on:
pull_request:
paths:
- '**.sh'
- .github/workflows/shellcheck.yaml
push:
branches:
- main
- prerelease_test
paths:
- '**.sh'
- .github/workflows/shellcheck.yaml
jobs:
shellcheck:
name: Shellcheck
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/windows-build-and-test.yaml
Expand Up @@ -5,7 +5,17 @@ on:
branches:
- main
- prerelease_test
paths-ignore:
- '**.md'
- 'LICENSE*'
- NOTICE
- 'bootstrap*'
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE*'
- NOTICE
- 'bootstrap*'
jobs:
config:
runs-on: ubuntu-latest
Expand Down