Skip to content

Commit d192ad0

Browse files
committed
release: v5.3.0
1 parent 3bee5ae commit d192ad0

File tree

2 files changed

+66
-6
lines changed

2 files changed

+66
-6
lines changed

CHANGELOG.md

+65-5
Original file line numberDiff line numberDiff line change
@@ -1,130 +1,189 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
89

10+
## [5.3.0] - 2020-12-12
11+
12+
### Added:
13+
14+
- Outputs: the action now has 3 outputs (`committed`, `pushed`, and `tagged`) that will be set to either `true` or `false` to tell you what the action has done. The outputs are also shown in the action logs.
15+
916
## [5.2.0] - 2020-11-11
17+
1018
### Added:
11-
- New `push` option: this lets you tell the action whether to push commit and tags to the repo. The default value is `true`, so that the default behavior is not changed. (issue #86)
19+
20+
- New `push` option: this lets you tell the action whether to push commit and tags to the repo. The default value is `true`, so that the default behavior is not changed. (issue #86)
1221

1322
## [5.1.2] - 2020-11-10
23+
1424
### Fixed:
25+
1526
- Fixed an issue with the build (issue #88)
1627

1728
## [5.1.1] - 2020-11-07
29+
1830
### Fixed:
31+
1932
- Fixed typo in parameter name: `pull_strategy` was written as `pull_stategy` (PR #83)
2033

2134
## [5.1.0] - 2020-10-07
35+
2236
### Added:
23-
- The default commit message now displays the name of the workflow too (issue #64)
37+
38+
- The default commit message now displays the name of the workflow too (issue #64)
2439

2540
## [5.0.0] - 2020-09-27
41+
2642
### Changed:
43+
2744
- **[BREAKING]** Action parameters: multiple action parameters have been changed, refer to the docs for better info
2845
- The code is now entirely in TypeScript (PR #57)
2946

3047
### Fixed:
48+
3149
- Improved input checks
3250
- Logs are now displayed on Windows too
3351
- Remove unnecessary steps
3452
- Remove unused dependencies
3553

3654
## [4.4.0] - 2020-07-31
55+
3756
### Added:
57+
3858
- Pull requests: the action can now work in runs triggered by pull request events (issue #48)
3959

4060
## [4.3.0] - 2020-07-29
61+
4162
### Addded:
63+
4264
- `signoff` parameter: lets you use the `--signoff` argument for the `git commit` command (PR #46)
4365

4466
## [4.2.1] - 2020-07-10
67+
4568
### Fixed:
69+
4670
- OS-support: the action now properly works on Windows instances (issue #33)
4771

4872
## [4.2.0] - 2020-05-17
73+
4974
### Added:
75+
5076
- Tagging: you can now create and update lightweight tags (PR #30)
5177

5278
## [4.1.0] - 2020-05-01
53-
### Added:
79+
80+
### Added:
81+
5482
- `ref` parameter: lets you choose the branch to run the action on, the default is the one that triggered the workflow (issue #29)
5583

5684
## [4.0.3] - 2020-05-01
85+
5786
### Fixed:
87+
5888
- Logs: `git diff` won't display logs anymore, to avoid buffer problems (issue #27)
5989
- Logs: additional info will be logged along with the command outputs
6090
- Logs: added groups to improve readability
6191

6292
## [4.0.2] - 2020-04-19
93+
6394
### Fixed:
95+
6496
- Error handling: failures are now easier to read (issue #25)
6597

6698
## [4.0.1] - 2020-03-20
99+
67100
### Fixed:
101+
68102
- Scheduled events: the action can be used in action runs triggered by a scheduled events
69103
- Warnings: there won't be warnings when both `author_name` and `author_email` are set
70104

71105
## [4.0.0] - 2020-03-03
106+
72107
### Removed:
108+
73109
- **[BREAKING]** `path` parameter: see 'Changed' section for more info
74110
- **[BREAKING]** `pattern` parameter: see 'Changed' section for more info
75111

76112
### Changed:
113+
77114
- The action now uses `git add` and `git rm` commands, you can choose their arguemnts directly by using the `add` and `remove` parameters
78115
- **[BREAKING]** Error handling: the action won't stop if one of your git commands fails (e.g. if one of your pathspecs doesn't match any file)
79116

80117
## [3.1.0] - 2020-02-21
118+
81119
### Added:
120+
82121
- `remove` parameter: lets you delete files directly from the action
83122

84123
## [3.0.0] - 2020-01-24
124+
85125
### Added:
126+
86127
- The action can now run in multiple subsequent jobs in the same workflow
87128

88129
### Removed:
130+
89131
- **[BREAKING]** [`actions/checkout@v1`](https://github.com/actions/checkout/tree/v1) support is being dropped in favor of [`actions/checkout@v2`](https://github.com/actions/checkout/releases/tag/v2)
90132

91133
## [2.3.2] - 2019-12-29
134+
92135
### Added:
136+
93137
- `cwd` parameter: lets you set the Current Working Directory
94138

95139
## [2.3.1] - 2019-12-20
96-
### Added:
140+
141+
### Added:
142+
97143
- Short tags: from now on, there will be short major tags available (`v2`, `v3`, ...)
98144

99145
## [2.3.0] - 2019-12-14
146+
100147
### Changed:
148+
101149
- TypeScript rewrite: the action will run faster because, unlike with Docker, no build process is needed
102150

103151
### Added:
152+
104153
- OS support: the action can now run in non-Linux environments too
105154

106155
## [2.2.0] - 2019-12-14
156+
107157
### Added:
158+
108159
- The action can automatically fetch the commit author to use
109160
- You can manually provide the author using the `author_name` and `author_email` parameters
110161

111162
## [2.1.1] - 2019-12-07
163+
112164
### Fixed:
165+
113166
- The action can now be used multiple times in the same workflow
114167

115168
## [2.1.0] - 2019-09-19
169+
116170
### Added:
171+
117172
- `force` parameter: uses `--force` when running `git add`
118173

119174
## [2.0.0] - 2019-09-18
175+
120176
### Changed:
177+
121178
- **[BREAKING]** The action now uses a `find` command
122179

123180
## [1.0.0] - 2019-09-17
181+
124182
First release
125183

126184
#
127-
[Unreleased]: https://github.com/EndBug/add-and-commit/compare/v5.2.0...HEAD
185+
186+
[unreleased]: https://github.com/EndBug/add-and-commit/compare/v5.3.0...HEAD
128187
[1.0.0]: https://github.com/EndBug/add-and-commit/tree/v1.0.0
129188
[2.0.0]: https://github.com/EndBug/add-and-commit/compare/v1.0.0...v2.0.0
130189
[2.1.0]: https://github.com/EndBug/add-and-commit/compare/v2.0.0...v2.1.0
@@ -149,3 +208,4 @@ First release
149208
[5.1.1]: https://github.com/EndBug/add-and-commit/compare/v5.1.0...v5.1.1
150209
[5.1.2]: https://github.com/EndBug/add-and-commit/compare/v5.1.1...v5.1.2
151210
[5.2.0]: https://github.com/EndBug/add-and-commit/compare/v5.1.2...v5.2.0
211+
[5.3.0]: https://github.com/EndBug/add-and-commit/compare/v5.2.0...v5.3.0

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "add-and-commit",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"description": "Add & commit files from a path directly from GitHub Actions",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)