generated from getsentry/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaction.yml
31 lines (31 loc) · 1019 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: 'action-migrations'
description: 'Actions related to django migrations in sentry'
author: 'sentry.io'
inputs:
cmd:
required: false
description: "The command to run to generate SQL"
default: "sentry django sqlmigrate"
run:
required: false
description: 'Action for the action to take. Possible values: null, "placeholder"'
name:
required: false
description: 'A unique name, required for multiple migrations in a Pull Request'
app_label:
required: false
description: 'A fallback app_label should one not be found in `migration`'
migration:
required: true
description: 'file name (or number) for the migration'
githubToken:
required: false
default: '${{ github.token }}'
description: 'GitHub Token (available as `secrets.GITHUB_TOKEN`)'
useRawBody:
required: false
default: 'false'
description: 'When true, use the commands output directly as comment body, interpreting it as markdown.'
runs:
using: 'node12'
main: 'dist/index.js'