Skip to content
Snippets Groups Projects
Unverified Commit 06f650f5 authored by David Robertson's avatar David Robertson Committed by GitHub
Browse files

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

parent ec1c7094
No related branches found
No related tags found
No related merge requests found
...@@ -499,8 +499,8 @@ jobs: ...@@ -499,8 +499,8 @@ jobs:
/logs/**/*.log* /logs/**/*.log*
export-data: export-data:
if: ${{ !failure() && !cancelled() }} # 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, portdb] needs: [linting-done, portdb, changes]
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
TOP: ${{ github.workspace }} TOP: ${{ github.workspace }}
...@@ -535,7 +535,7 @@ jobs: ...@@ -535,7 +535,7 @@ jobs:
portdb: 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: needs:
- linting-done - linting-done
- changes - changes
...@@ -702,6 +702,7 @@ jobs: ...@@ -702,6 +702,7 @@ jobs:
trial-olddeps trial-olddeps
sytest sytest
portdb portdb
export-data
complement complement
check-signoff check-signoff
lint-newsfile lint-newsfile
......
Avoid running CI steps when the files they check have not been changed.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment