Skip to content

Commit

Permalink
test3
Browse files Browse the repository at this point in the history
  • Loading branch information
LesnyRumcajs committed Jan 8, 2025
1 parent 8cab164 commit ae9d6e7
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/docs-required-override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
runs-on: ubuntu-latest
outputs:
changesFound: ${{ steps.filter.outputs.changesFound }}
otherChangesFound: ${{ steps.filter.outputs.otherChangesFound }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
Expand All @@ -47,16 +46,31 @@ jobs:
- '**.md'
- '.github/workflows/docs-check.yml'
- '.github/workflows/docs-required-override.yml'
changes2:
name: Determine if we need to run the workflow
runs-on: ubuntu-latest
outputs:
otherChangesFound: ${{ steps.filter.outputs.otherChangesFound }}
steps:
- name: Checkout source code
uses: actions/checkout@v4

- uses: dorny/paths-filter@v3
id: filter
with:
predicate-quantifier: every
filters: |
otherChangesFound:
- '**'
- '!docs/**'
- '!**.md'
- '!.github/workflows/docs-check.yml'
- '!.github/workflows/docs-required-override.yml'
test:
test2:
name: Calibnet check
runs-on: ubuntu-latest
needs: changes
if: ${{ needs.changes.outputs.changesFound == 'true' && needs.changes.outputs.otherChangesFound == 'false' }}
if: ${{ needs.changes.outputs.changesFound == 'true' && needs.changes2.outputs.otherChangesFound == 'false' }}
steps:
- run: echo "No-op job to trigger the required checks"

0 comments on commit ae9d6e7

Please sign in to comment.