From 05bfe3be007249f1fb30b8a783a42e815d6d01d8 Mon Sep 17 00:00:00 2001 From: Ben Ahmady <32935794+subatoi@users.noreply.github.com> Date: Thu, 23 Oct 2025 18:07:53 +0100 Subject: [PATCH] Revert "Adds workflow for automatic comment requesting feedback on contributor experience (#58152)" (#58162) --- .github/workflows/docs-feedback-comment.yaml | 24 -------------------- 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/docs-feedback-comment.yaml diff --git a/.github/workflows/docs-feedback-comment.yaml b/.github/workflows/docs-feedback-comment.yaml deleted file mode 100644 index 509d3dbeb1..0000000000 --- a/.github/workflows/docs-feedback-comment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: Automatic comment to request feedback on PR experience - -# What it does: When PRs are merged, generate an automatic comment asking for feedback. -# Why we have it: So Hubbers can leave us feedback on the DIY Docs experience. -# Who it impacts: All Hubbers - -on: - pull_request: - types: - - closed - -jobs: - add-comment: - if: github.repository == 'github/docs-internal' && github.event.pull_request.merged == true - permissions: - contents: read - pull-requests: write - runs-on: ubuntu-latest - steps: - - name: Comment on the PR - run: | - gh pr comment ${{ github.event.pull_request.number }} --body "Please leave feedback on the contributor experience! Leave a 👍 or 👎. You can also reach us in `#docs-contributor-feedback` on Slack." - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}