generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
43 lines (43 loc) · 1.57 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
name: 'Git Queue'
description: 'A GitHub Action that implements a job queue with a concurrency lock by using Git empty commits'
author: 'Nautilus-Cyberneering'
branding:
icon: 'git-pull-request'
color: 'gray-dark'
inputs:
queue_name:
description: 'Queue name. It cannot contain special characters or white spaces'
required: true
action:
description: 'The action you want to perform. Options: create-job, next-job, start-job, finish-job'
required: true
job_payload:
description: 'Job payload. It can be any string'
required: false
default: ''
git_repo_dir:
description: 'The git repository directory. The default value is the current working dir'
required: false
default: ''
git_commit_gpg_sign:
description: 'The git commit --gpg-sign argument: https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---gpg-signltkeyidgt'
required: false
default: ''
git_commit_no_gpg_sign:
description: 'The git commit --no-gpg-sign argument: https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---no-gpg-sign'
required: false
default: 'true'
outputs:
job_created:
description: 'Boolean, true if the job was created successfully'
job_started:
description: 'Boolean, true if the job was started successfully'
job_finished:
description: 'Boolean, true if the job was finished successfully'
job_commit:
description: 'The commit hash of the newly created commits, when the action creates a new commit'
job_payload:
description: 'The job payload'
runs:
using: 'node16'
main: 'dist/index.js'