Skip to content

Commit

Permalink
permit manual triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
gjtorikian committed May 7, 2024
1 parent baeeaf1 commit 738ba70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
with:
gem_name: html-proofer
version_filepath: lib/html_proofer/version.rb
labeled: ${{ github.event == 'push' }}
release: ${{ github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'Release:') }}
prepare: ${{ github.event == 'push' || github.event == 'workflow_dispatch' }}
release: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'release')) }}

0 comments on commit 738ba70

Please sign in to comment.