Skip to content

Commit

Permalink
chore: test pr
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaypee Ignacio committed Aug 19, 2024
1 parent c0ec68f commit 43c50cd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ concurrency:
jobs:
is-renovate-bot:
name: Is Renovate Bot?
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
outputs:
isRenovateBot: ${{ steps.check-actor.outputs.isRenovateBot }}
Expand All @@ -32,7 +33,7 @@ jobs:
test-renovate:
name: "YES - run all tests"
needs: is-renovate-bot
if: needs.is-renovate-bot.outputs.isRenovateBot == '1' && github.event_name == 'pull_request'
if: needs.is-renovate-bot.outputs.isRenovateBot == '1'
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -47,7 +48,7 @@ jobs:
test-affected-pr:
name: "NO - run tests for affected projects"
needs: is-renovate-bot
if: needs.is-renovate-bot.outputs.isRenovateBot == '0' && github.event_name == 'pull_request'
if: needs.is-renovate-bot.outputs.isRenovateBot == '0'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down

0 comments on commit 43c50cd

Please sign in to comment.