mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
20 lines
586 B
YAML
20 lines
586 B
YAML
name: Merge Event
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- closed
|
|
|
|
jobs:
|
|
if_merged:
|
|
if: github.event.pull_request.merged == true
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: mattermost/action-mattermost-notify@master
|
|
with:
|
|
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_MERGE_WEBHOOK }}
|
|
TEXT: >
|
|
[${{ github.repository }}] |
|
|
[${{ github.event.pull_request.title }}
|
|
#${{ github.event.number }}](https://github.com/${{ github.repository }}/pull/${{ github.event.number }})
|
|
was merged into main by ${{ github.actor }}
|