From 97fc5fe27f7c5a8326fc0491375602f6d2b73542 Mon Sep 17 00:00:00 2001 From: TomJGooding <101601846+TomJGooding@users.noreply.github.com> Date: Thu, 12 Feb 2026 01:01:19 +0000 Subject: [PATCH] ci: remove broken readmechanged workflow Remove the broken workflow to send notifications on README changes. This workflow stopped working a long time ago and presumably is no longer needed. --- .github/workflows/readmechanged.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/readmechanged.yml diff --git a/.github/workflows/readmechanged.yml b/.github/workflows/readmechanged.yml deleted file mode 100644 index 7511dcd4be..0000000000 --- a/.github/workflows/readmechanged.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: README.md Changed - -on: - push: - branches: - - master - paths: - - 'README.md' - -jobs: - send_notification: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Send notification to README Authors - env: - GITHUB_TOKEN: ${{ secrets.GHP_README_WORKFLOW }} - GIT_SHA: ${{ github.sha }} - run: | - COMMIT=$(git rev-parse --short "$GIT_SHA") - AUTHORS='@willmcgugan @oleksis @Adilius' - BODY="🤓 $AUTHORS README.md changed 📝. Check the [commit $COMMIT](https://github.com/willmcgugan/rich/commit/$GIT_SHA) 👀" - DISCUSSIONID='MDEwOkRpc2N1c3Npb24zMzI2NzM0' - gh api graphql -H 'GraphQL-Features: discussions_api' -f body="$BODY" -F discussionId="$DISCUSSIONID" -f query='mutation($body: String!, $discussionId: ID!){addDiscussionComment(input:{body: $body , discussionId: $discussionId}){comment{id}}}'