Skip to content

Commit

Permalink
allow workflow to run on dispatch (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
acn-sbuad authored Aug 26, 2024
1 parent f9b9acf commit 2f2525e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
build-test-analyze:
name: Build, test & analyze
if: ((github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false) || github.event_name == 'push') && github.repository_owner == 'Altinn' && github.actor != 'dependabot[bot]'
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false))
runs-on: ubuntu-latest
services:
postgres:
Expand Down

0 comments on commit 2f2525e

Please sign in to comment.