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}}}'