meta: Bump runner for discord notification action #4512
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: Discord notifications | |
| on: [push, pull_request] | |
| jobs: | |
| notify_discord: | |
| runs-on: ubuntu-22.04 | |
| if: always() && github.repository == 'SerenityOS/jakt' && (github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')) | |
| steps: | |
| - name: Discord action notification | |
| env: | |
| DISCORD_WEBHOOK: ${{ secrets.JAKT_DISCORD_WEBHOOK }} | |
| CUSTOM_GITHUB_EVENT_NAME: ${{ github.event_name == 'pull_request_target' && 'pull_request' || github.event_name }} # fake the event type as discord doesn't know how to parse the special pull_request_target context | |
| uses: IdanHo/action-discord@754598254f288e6d8e9fca637832e3c163515ba8 | |
| # FIXME: Find a way to notify on 'ready_for_review', but rate-limited to once/twice per day. | |
| if: ${{ (github.event['pull_request'] && github.event['action'] == 'opened') || github.event['commits'] }} |