diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml deleted file mode 100644 index 50ff681..0000000 --- a/.github/workflows/triage.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Triage - -on: - issues: - types: [opened, edited, reopened] - issue_comment: - types: [created] - pull_request_target: - types: [opened, edited, reopened] - pull_request_review: - types: [submitted] - schedule: - - cron: '30 1 * * *' - workflow_dispatch: - -permissions: - contents: write - issues: write - pull-requests: write - -jobs: - label: - if: github.event_name == 'issues' || github.event_name == 'pull_request_target' - uses: athal7/gh-triage-workflows/.github/workflows/label.yml@main - secrets: inherit - - stale: - if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' - uses: athal7/gh-triage-workflows/.github/workflows/stale.yml@main - secrets: inherit - - review-bridge: - if: github.event_name == 'pull_request_review' || github.event_name == 'pull_request_target' - uses: athal7/gh-triage-workflows/.github/workflows/review-bridge.yml@main - secrets: inherit - - dependabot-automerge: - if: github.event_name == 'pull_request_target' && github.event.pull_request.user.login == 'dependabot[bot]' - uses: athal7/gh-triage-workflows/.github/workflows/dependabot-automerge.yml@main - secrets: inherit - - jules-assign: - if: github.event_name == 'issues' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' - uses: athal7/gh-triage-workflows/.github/workflows/jules-assign.yml@main - secrets: inherit - - issue-escalation: - if: github.event_name == 'issue_comment' - uses: athal7/gh-triage-workflows/.github/workflows/issue-escalation.yml@main - secrets: inherit