-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# action.yml | ||
name: 'Syncmaven Action' | ||
description: 'Run a command in a new container' | ||
inputs: | ||
dir: | ||
description: 'Project subdirectory' | ||
required: false | ||
select: | ||
description: 'Syncs to run' | ||
required: false | ||
state: | ||
description: 'State DB location, e.g. postgres://user:password@host:port/dbname' | ||
required: false | ||
debug: | ||
description: 'Enable extra logging for debugging purposes' | ||
required: false | ||
vars: | ||
description: 'Environment variables to set in the container' | ||
required: false | ||
full: | ||
description: 'If sync supports incremental mode, this option will force full refresh. Will apply to all selected syncs' | ||
required: false | ||
runs: | ||
using: 'docker' | ||
image: 'docker://syncmaven/syncmaven' | ||
entrypoint: 'action.sh' |