mirror of
https://github.com/th30d4y/BURP-AI.git
synced 2026-05-26 11:35:52 +00:00
23 lines
621 B
YAML
23 lines
621 B
YAML
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
|