Skip to content

Commit

Permalink
fix: allow workflow_dispatch to trigger release.yml (#637)
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Lewis <ianlewis@google.com>
  • Loading branch information
ianlewis committed Jun 8, 2023
1 parent 733cecb commit c39b10c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
verification:
needs: [builder]
runs-on: ubuntu-latest
if: github.event_name != 'schedule'
if: github.event_name != 'schedule' && github.event_name != 'workflow_dispatch'
permissions: read-all
steps:
- name: Install the verifier
Expand Down

0 comments on commit c39b10c

Please sign in to comment.