-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yaml
More file actions
27 lines (26 loc) · 1005 Bytes
/
action.yaml
File metadata and controls
27 lines (26 loc) · 1005 Bytes
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
name: 'Superblocks Export'
description: 'Pull application-specific components source code from Superblocks'
inputs:
token:
description: 'The Superblocks access token to use'
required: true
domain:
description: 'The Superblocks domain where applications are hosted'
default: 'app.superblocks.com'
path:
description: 'The relative path from repo root to the Superblocks root directory. This is where the ~.superblocks/superblocks.json config file is located.'
default: '.'
sha:
description: 'Commit to pull changes for'
default: 'HEAD'
runs:
using: 'docker'
image: 'Dockerfile'
env:
SUPERBLOCKS_AUTHOR_NAME: 'superblocks-app[bot]'
SUPERBLOCKS_AUTHOR_EMAIL: '142439023+superblocks-app[bot]@users.noreply.github.com'
SUPERBLOCKS_COMMIT_MESSAGE_IDENTIFIER: '[superblocks ci]'
SUPERBLOCKS_TOKEN: ${{ inputs.token }}
SUPERBLOCKS_DOMAIN: ${{ inputs.domain }}
SUPERBLOCKS_PATH: ${{ inputs.path }}
SUPERBLOCKS_COMMIT_SHA: ${{ inputs.sha }}