From de4d803404323dce37d418b272de673f7e29abee Mon Sep 17 00:00:00 2001 From: Stalin <161853795+Stalin-143@users.noreply.github.com> Date: Thu, 23 Apr 2026 03:56:16 +0530 Subject: [PATCH] Create org-bot-caller.yml --- .github/workflows/org-bot-caller.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/org-bot-caller.yml diff --git a/.github/workflows/org-bot-caller.yml b/.github/workflows/org-bot-caller.yml new file mode 100644 index 0000000..2bd7cba --- /dev/null +++ b/.github/workflows/org-bot-caller.yml @@ -0,0 +1,22 @@ +name: Organization Issue/PR Bot Caller + +on: + issues: + types: [opened] + pull_request: + types: [opened] + +permissions: + contents: read + issues: write + pull-requests: write + +jobs: + org-bot: + uses: th30d4y/.github/.github/workflows/org-bot.yml@main + with: + event_type: ${{ github.event_name == 'issues' && 'Issue' || 'Pull Request' }} + number: ${{ github.event.issue.number || github.event.pull_request.number }} + title: ${{ github.event.issue.title || github.event.pull_request.title }} + url: ${{ github.event.issue.html_url || github.event.pull_request.html_url }} + secrets: inherit