name: README.md Changed on: push: branches: - master paths: - 'README.md' jobs: send_notification: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - 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}}}'