From e182c216a98fadb4908ba7a3286967dab9f633f8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 22 Jan 2026 04:04:52 +0000 Subject: [PATCH] fix: update workflow condition to include manual dispatch events Co-authored-by: Stalin-143 <161853795+Stalin-143@users.noreply.github.com> --- .github/workflows/contributors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml index 5302479..f931170 100644 --- a/.github/workflows/contributors.yml +++ b/.github/workflows/contributors.yml @@ -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