From 0e621e8ec1ebc98c3a02e4ff885497a6ef8d87bd Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sun, 16 Nov 2025 17:57:10 -0700 Subject: [PATCH] [ci] Remove command robotpy PR responder (#8392) This is no longer required with the merge of Python commands. --- .github/workflows/command-robotpy-pr.yml | 27 ------------------------ 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/command-robotpy-pr.yml diff --git a/.github/workflows/command-robotpy-pr.yml b/.github/workflows/command-robotpy-pr.yml deleted file mode 100644 index 08e97d0055..0000000000 --- a/.github/workflows/command-robotpy-pr.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Comment on PR for robotpy - -on: - pull_request_target: - types: - - opened - paths: - - 'commandsv2/src/**/*.java' - -jobs: - comment: - permissions: - pull-requests: write - - runs-on: ubuntu-latest - steps: - - name: Comment on PR - if: github.repository == 'wpilibsuite/allwpilib' - uses: actions/github-script@v7 - with: - script: | - github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: 'This PR modifies commands. Please open a corresponding PR in [Python Commands](https://github.com/robotpy/robotpy-commands-v2/) and include a link to this PR.' - })