Skip to content

Commit

Permalink
Merge pull request #77 from planetscale/joem/fix-workflow-dispatch-tr…
Browse files Browse the repository at this point in the history
…igger-in-release

ci(gha): fix release workflow not able to be manually triggered
  • Loading branch information
joemiller authored Oct 9, 2024
2 parents a7f6c0b + a93d586 commit bc7ce55
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
if: github.event_name == 'push' && !contains(toJson(github.event.commits), '[ci skip]') && !contains(toJson(github.event.commits), '[skip ci]')
if: >
(github.event_name == 'push' && !contains(toJson(github.event.commits), '[ci skip]') && !contains(toJson(github.event.commits), '[skip ci]'))
|| github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: make lint
Expand Down

0 comments on commit bc7ce55

Please sign in to comment.