From 7dd28c6e76ff5669effb115a8368d5102df57d0f Mon Sep 17 00:00:00 2001 From: ksauraj Date: Wed, 31 Jan 2024 00:01:08 +0530 Subject: [PATCH] greetings: enable workflow to run from workflow dispatch this would make testing workflow easier and also convenient for manual greetings --- .github/workflows/greetings.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 1a4514d..4669e2a 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -1,6 +1,6 @@ name: Greetings -on: [pull_request, issues] +on: [pull_request, issues, workflow_dispatch] jobs: greeting: @@ -13,4 +13,4 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: 'Hey, @${{ github.actor }} welcome to JEE Counsellor repository.🎊 Thank you so much for taking the time to point this out.🙌' - pr-message: 'Hey, @${{ github.actor }} welcome to JEE Counsellor repository.🎊 Thank you so much for taking the effort to make our project better! 🙌 Keep making such awesome contributions!' \ No newline at end of file + pr-message: 'Hey, @${{ github.actor }} welcome to JEE Counsellor repository.🎊 Thank you so much for taking the effort to make our project better! 🙌 Keep making such awesome contributions!'