We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a06ac commit 42be0ccCopy full SHA for 42be0cc
.github/workflows/nuget-publish.yml
@@ -9,6 +9,9 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
+ # Only depend on generate-and-commit if this is a PR event
13
+ needs: ${{ github.event_name == 'pull_request' && 'generate-and-commit' || '' }}
14
+ if: ${{ github.event_name != 'pull_request' || always() }}
15
steps:
16
- uses: actions/checkout@v4
17
0 commit comments