Skip to content

Commit

Permalink
Don't push CI packages for dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed Oct 28, 2024
1 parent 9b05a15 commit a64414a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
if: github.event_name != 'pull_request'
run: dotnet pack ${{ inputs.solution }} --configuration Release --no-build
- name: Publish CI Packages
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && github.actor != 'dependabot[bot]'
run: |
for package in $(find -name "*.nupkg" | grep "minver" -v); do
Expand Down

0 comments on commit a64414a

Please sign in to comment.