We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 119ad6a commit aee5d96Copy full SHA for aee5d96
1 file changed
.github/workflows/ci.yml
@@ -69,9 +69,11 @@ jobs:
69
70
discover:
71
name: Discover Repositories
72
+ needs: changes
73
if: |
74
github.event_name != 'pull_request' &&
- (github.event_name != 'workflow_dispatch' || inputs.run_docs)
75
+ (github.event_name != 'workflow_dispatch' || inputs.run_docs) &&
76
+ (needs.changes.outputs.markdown == 'true' || needs.changes.outputs.docs == 'true' || inputs.run_docs)
77
runs-on: ubuntu-latest
78
outputs:
79
repos: ${{ steps.repos.outputs.repos }}
0 commit comments