diff --git a/.github/workflows/comment-on-unready-assigned-issue-local.yml b/.github/workflows/comment-on-unready-assigned-issue-local.yml deleted file mode 100644 index 9b4b39bae..000000000 --- a/.github/workflows/comment-on-unready-assigned-issue-local.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Comment on Unready Assigned Issue (Local) -on: - issues: - types: [assigned] -concurrency: - group: comment-on-unready-assigned-issue-${{ github.event.issue.number || github.run_id }} - cancel-in-progress: false -jobs: - comment_when_unready: - if: github.event.assignee.login == 'oz-agent' && !contains(github.event.issue.labels.*.name, 'ready-to-spec') && !contains(github.event.issue.labels.*.name, 'ready-to-implement') - permissions: - issues: write - uses: warpdotdev/oz-for-oss/.github/workflows/comment-on-unready-assigned-issue.yml@main - secrets: - OZ_MGMT_GHA_APP_ID: ${{ secrets.OZ_MGMT_GHA_APP_ID }} - OZ_MGMT_GHA_PRIVATE_KEY: ${{ secrets.OZ_MGMT_GHA_PRIVATE_KEY }} diff --git a/.github/workflows/respond-to-triaged-issue-comment-local.yml b/.github/workflows/respond-to-triaged-issue-comment-local.yml deleted file mode 100644 index c47b9e45b..000000000 --- a/.github/workflows/respond-to-triaged-issue-comment-local.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Respond to Triaged Issue Comment (Local) -on: - issue_comment: - types: [created] -concurrency: - group: respond-to-triaged-issue-comment-${{ github.event.comment.id || github.run_id }} - cancel-in-progress: false -jobs: - # Mention, bot, event-type, and trust gates all live in the reusable - # workflow (``respond-to-triaged-issue-comment.yml``). This adapter - # exists only to subscribe to the GitHub event that can carry an - # ``@oz-agent`` mention on a triaged issue and delegate it through - # ``workflow_call``. - respond_inline: - permissions: - contents: read - issues: write - uses: warpdotdev/oz-for-oss/.github/workflows/respond-to-triaged-issue-comment.yml@main - secrets: - OZ_MGMT_GHA_APP_ID: ${{ secrets.OZ_MGMT_GHA_APP_ID }} - OZ_MGMT_GHA_PRIVATE_KEY: ${{ secrets.OZ_MGMT_GHA_PRIVATE_KEY }} - OSS_WARP_API_KEY: ${{ secrets.OSS_WARP_API_KEY }}