fix: update workflow condition to include manual dispatch events

Co-authored-by: Stalin-143 <161853795+Stalin-143@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-22 04:04:52 +00:00
parent 07e381e131
commit e182c216a9
+1 -1
View File
@@ -17,7 +17,7 @@ permissions:
jobs:
add-contributors:
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)
steps:
- name: Checkout repository
uses: actions/checkout@v4