Skip to content

Commit

Permalink
Allow branch cleanup on workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonb5 committed May 15, 2024
1 parent 1c05311 commit 539aebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: write # for git push
name: Cleanup branch previews
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 539aebd

Please sign in to comment.