Skip to content

Commit 3bcbfbe

Browse files
committed
v3.0.0 switch to node24 runtime
1 parent d6b9b34 commit 3bcbfbe

3 files changed

Lines changed: 54 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Changelog
2+
3+
## v3.0.0
4+
5+
### Changed
6+
- Updated to the node24 runtime
7+
8+
## v2.1.2
9+
10+
### Fixed
11+
- Gracefully handle new branches/tags pushes
12+
13+
## v2.1.1
14+
15+
### Changed
16+
- Better users aggregation for multiple commits
17+
- Show unique list of users/emails instead of just "multiple users"
18+
19+
## v2.1.0
20+
21+
### Added
22+
- `codewatchers_ref` configuration option to control branch of loaded CODEWATCHERS file
23+
- `aggregate_files_limit` setting to trigger files aggregation
24+
- `aggregate_notifications_limit` setting to trigger notifications aggregation
25+
26+
### Changed
27+
- Strip less interesting commit fields from the output
28+
29+
### Fixed
30+
- Fixed large pushes processing issues
31+
32+
## v1.0.4
33+
34+
### Added
35+
- Limit number of produced notifications
36+
- Useful to avoid sending too much notifications on big merges or rebases
37+
38+
## v1.0.3
39+
40+
### Fixed
41+
- Prevent unexpected failure if GitHub returns empty author or committer
42+
43+
## v1.0.2
44+
45+
### Removed
46+
- Drop files.patch property from output (they might be huge but hardly useful for notifications)
47+
48+
## v1.0.1
49+
50+
### Added
51+
- Initial release

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ inputs:
2727
required: false
2828
default: '20'
2929
aggregate_notifications_limit:
30-
description: 'Limit after which many notifications will be replaces with a single aggregated summary message (for each distinct group of subscribers)'
30+
description: 'Limit after which many notifications will be replaced with a single aggregated summary message (for each distinct group of subscribers).'
3131
required: false
3232
default: '5'
3333
outputs:
@@ -37,5 +37,5 @@ branding:
3737
icon: 'bell'
3838
color: 'green'
3939
runs:
40-
using: 'node20'
40+
using: 'node24'
4141
main: 'dist/index.js'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "github-codewatchers",
3-
"version": "2.1.2",
3+
"version": "3.0.0",
44
"description": "GitHub Action that triggers notifications about changed files to a list of subscribers",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)