-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
89 lines (68 loc) · 2.31 KB
/
action.yml
File metadata and controls
89 lines (68 loc) · 2.31 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: 'A-Line Release Pilot'
description: 'Framework-agnostic release automation with multi-package and multi-ecosystem support'
author: 'A-Line Services'
branding:
icon: 'package'
color: 'blue'
inputs:
github-token:
description: 'GitHub token for API access and pushing changes'
required: true
default: ${{ github.token }}
config-file:
description: 'Path to release-pilot config file'
required: false
default: '.github/release-pilot.yml'
mode:
description: 'Release mode: stable (full release), dev (pre-release), or check (dry-run report)'
required: false
default: 'stable'
dry-run:
description: 'Run without making any changes (useful for testing)'
required: false
default: 'false'
dev-suffix:
description: 'Suffix for dev releases (e.g., dev, nightly, alpha, beta, rc)'
required: false
default: 'dev'
packages:
description: 'JSON array of package configs (alternative to config file)'
required: false
default-bump:
description: 'Default version bump when no release label is found (major, minor, patch)'
required: false
default: 'patch'
npm-token:
description: 'NPM registry token for publishing (configures .npmrc automatically)'
required: false
npm-registry:
description: 'NPM registry URL (default: https://registry.npmjs.org)'
required: false
default: 'https://registry.npmjs.org'
git-user-name:
description: 'Git user name for commits (auto-detected from token if not set)'
required: false
git-user-email:
description: 'Git user email for commits (auto-detected from token if not set)'
required: false
cargo-token:
description: 'Cargo registry token for publishing to crates.io'
required: false
outputs:
version:
description: 'The new version that was released'
previous-version:
description: 'The previous version before the release'
bump-type:
description: 'The version bump type that was applied (major, minor, patch)'
released-packages:
description: 'JSON array of package names that were released'
skipped:
description: 'Whether the release was skipped (true/false)'
release-url:
description: 'URL of the created GitHub release (if any)'
tag:
description: 'The git tag that was created'
runs:
using: 'node20'
main: 'dist/index.cjs'