terraform-provider-stackitp.../.github/workflows/notify_pr.yaml
Marcel S. Henselin 064d2cf1db chore: add notification action
[skip ci]
2026-03-25 11:17:33 +01:00

20 lines
608 B
YAML

name: Notify Google Chat on new PR
on:
pull_request:
types:
- opened
jobs:
notify-pr-google-chat:
runs-on: stackit-docker
steps:
- name: Notify
uses: ./.github/actions/notify
with:
title: New Pull Request
event_title: ${{ github.event.pull_request.title }}
event_author: ${{ github.event.pull_request.user.login }}
event_body: ${{ github.event.pull_request.body || 'No description provided.' }}
event_number: ${{ github.event.pull_request.number }}
event_url: ${{ github.event.pull_request.html_url }}