Add note about wildlife data and change to "What before windmill" #74
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: Create discord thread when a PR is opened, react with green checkmark when PR is merged | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - ready_for_review | |
| - closed | |
| jobs: | |
| notify_discord_when_pr_opened: | |
| if: (github.event.pull_request.draft == false) && (github.event.action == 'opened' || github.event.action == 'ready_for_review') | |
| uses: windmill-labs/windmill/.github/workflows/shareable-discord-notification.yml@main | |
| with: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| PR_AUTHOR: ${{ github.event.pull_request.user.login }} | |
| PR_STATUS: 'opened' | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| secrets: | |
| DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_PR_REVIEWS_WEBHOOK }} | |
| merge_success_emoji: | |
| if: github.event.pull_request.merged == true | |
| uses: windmill-labs/windmill/.github/workflows/shareable-discord-notification.yml@main | |
| with: | |
| PR_STATUS: 'merged' | |
| DISCORD_CHANNEL_ID: '1372522929270820995' | |
| DISCORD_GUILD_ID: '930051556043276338' | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| secrets: | |
| DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_AI_BOT_TOKEN }} |