Fix Colab link in parent document retrieval notebook #35
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Notify DevDocs on Reviews | |
| on: | |
| issue_comment: | |
| types: [created, edited] | |
| pull_request_review_comment: | |
| types: [created, edited] | |
| pull_request_target: | |
| types: [opened, edited] | |
| pull_request_review: | |
| types: [submitted, edited] | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check for @DevDocs mention and send to Slack | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const text = context.payload.comment?.body | |
| || context.payload.issue?.body | |
| || context.payload.pull_request?.body | |
| || context.payload.review?.body | |
| || ""; | |
| if (text.includes("@DevDocs") || text.includes("@mongodb/devdocs")) { | |
| await fetch(process.env.SLACK_WEBHOOK_URL, { | |
| method: "POST", | |
| headers: { "Content-Type": "application/json" }, | |
| body: JSON.stringify({ | |
| text: `:eyes: @DevDocs has been mentioned in *${context.payload.repository.full_name}* | |
| Event: *${context.eventName}* | |
| Link: ${context.payload.comment?.html_url | |
| || context.payload.issue?.html_url | |
| || context.payload.pull_request?.html_url | |
| || context.payload.review?.html_url}` | |
| }), | |
| }); | |
| } | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |