Skip to content

Commit

Permalink
add workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids authored Jul 16, 2024
1 parent 531d5a6 commit 5b68ff0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/sipify-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ name: Run sipify
on:
issue_comment:
types: [created]
workflow_dispatch:
push:
branches:
- master
- release-*

jobs:
sipify:
if: github.event_name == 'push' || ( contains(github.event.comment.html_url, '/pull/') && github.event.comment.body == '/sipify' )
if: github.event_name != 'issue_comment' || ( contains(github.event.comment.html_url, '/pull/') && github.event.comment.body == '/sipify' )
runs-on: [ubuntu-latest]
steps:

Expand Down

0 comments on commit 5b68ff0

Please sign in to comment.