Browse Source

Skip export-data on non-code (e.g. docs) PRs (#16387)

tags/v1.94.0rc1
David Robertson 7 months ago
committed by GitHub
parent
commit
06f650f5f4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions
  1. +4
    -3
      .github/workflows/tests.yml
  2. +1
    -0
      changelog.d/16387.misc

+ 4
- 3
.github/workflows/tests.yml View File

@@ -499,8 +499,8 @@ jobs:
/logs/**/*.log*

export-data:
if: ${{ !failure() && !cancelled() }} # Allow previous steps to be skipped, but not fail
needs: [linting-done, portdb]
if: ${{ !failure() && !cancelled() && needs.changes.outputs.integration == 'true'}} # Allow previous steps to be skipped, but not fail
needs: [linting-done, portdb, changes]
runs-on: ubuntu-latest
env:
TOP: ${{ github.workspace }}
@@ -535,7 +535,7 @@ jobs:


portdb:
if: ${{ !failure() && !cancelled() && needs.changes.outputs.linting == 'true' }} # Allow previous steps to be skipped, but not fail
if: ${{ !failure() && !cancelled() && needs.changes.outputs.integration == 'true'}} # Allow previous steps to be skipped, but not fail
needs:
- linting-done
- changes
@@ -702,6 +702,7 @@ jobs:
trial-olddeps
sytest
portdb
export-data
complement
check-signoff
lint-newsfile


+ 1
- 0
changelog.d/16387.misc View File

@@ -0,0 +1 @@
Avoid running CI steps when the files they check have not been changed.

Loading…
Cancel
Save