mirror of
https://github.com/apache/superset.git
synced 2026-05-10 02:15:50 +00:00
* build: inline cached-dependencies to unblock CI * Run E2E on pull_request on;y * Inline all external actions * Checkout needed for internal actions Also fixes pre-commit * Add missing files
16 lines
329 B
YAML
16 lines
329 B
YAML
name: Comment on PR
|
|
author: Aaron Klaassen <aaron@unsplash.com>
|
|
description: Leaves a comment on an open PR matching a push event.
|
|
branding:
|
|
icon: 'message-square'
|
|
color: 'blue'
|
|
inputs:
|
|
msg:
|
|
description: Comment's message
|
|
required: true
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.msg }}
|