Skip to content

Commit

Permalink
.github: Fix path filter (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
lens0021 authored Oct 13, 2024
1 parent b5dbafc commit fcac5d8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/before-cd-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:

jobs:
no-changes:
not-changes:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand All @@ -17,7 +17,8 @@ jobs:
# This name is used by status check requirement
before-cd-test:
if: ${{ needs.no-changes.outputs.backupbot == 'true' }}
needs: not-changes
if: ${{ needs.not-changes.outputs.backupbot == 'true' }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit fcac5d8

Please sign in to comment.