generated from remal-github-actions/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
39 lines (37 loc) · 1.31 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
name: Synchronize with template repository
description: Synchronize repository with template repository
inputs:
configFile:
required: true
default: '.github/sync-with-template.yml'
description: Path to config file
localTransformationsFile:
required: true
default: '.github/sync-with-template-local-transformations.yml'
description: Path to local transformations file
githubToken:
required: true
description: GitHub access token with at least 'public_repo' and 'workflow' scopes (use 'repo' scope instead of 'public_repo' for private repositories)
templateRepository:
required: false
description: Template repository full name (owner/repo). GitHub template repository information is used by default.
syncBranchName:
required: true
default: 'template-sync'
description: Git branch name that is used for synchronization with template repository
conventionalCommits:
required: true
default: 'false'
description: Set to 'true' to enable using Conventional Commits
commitMessage:
required: true
default: 'Template repository changes: <template-repository>'
description: Commit message
dryRun:
required: true
default: 'false'
description: Set to 'true' to disable Git push
runs:
using: node20
main: dist/index.js
#post: dist/index.js