37 lines
909 B
YAML
37 lines
909 B
YAML
name: 'Google Chat Action'
|
|
author: 'D Ther Htun/ Marcel S. Henselin'
|
|
description: 'Github actions for google chat Room Bot'
|
|
branding:
|
|
icon: 'at-sign'
|
|
color: 'green'
|
|
inputs:
|
|
autor:
|
|
description: 'Git Action Author'
|
|
required: true
|
|
giturl:
|
|
description: 'Git Server URL'
|
|
required: true
|
|
status:
|
|
description: 'Git Action Build Status'
|
|
required: true
|
|
actionid:
|
|
description: 'Current Running Action ID'
|
|
required: true
|
|
webhook:
|
|
description: 'Google Chat Webhook URL'
|
|
required: true
|
|
event_body:
|
|
description: 'Google Chat Event Body'
|
|
required: true
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'docker://stackit-solutions.git.onstackit.cloud/actions/notify-slim:v0.1.2'
|
|
# image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.project }}
|
|
- ${{ inputs.commit }}
|
|
- ${{ inputs.branch }}
|
|
- ${{ inputs.status }}
|
|
- ${{ inputs.actionid }}
|
|
- ${{ inputs.webhook }}
|