@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 2.0.0] - 2026-02-02
11+
12+ ### Added
13+ - ** cleanup** action: PR comment delete feature
14+ - Delete the deploy PR comment when PR is closed (default: enabled)
15+ - New inputs: ` delete-pr-comment ` , ` comment-header `
16+ - New output: ` pr-comment-deleted `
17+
18+ ### Removed
19+ - ** BREAKING** ` cleanup ` action: ` update-pr-comment ` input (use ` delete-pr-comment ` instead)
20+ - ** BREAKING** ` cleanup ` action: ` pr-comment-updated ` output (use ` pr-comment-deleted ` instead)
21+
22+ ### Migration from v1
23+
24+ If you use the cleanup action with ` update-pr-comment ` , update your workflow:
25+ - Replace ` update-pr-comment: true ` with ` delete-pr-comment: true `
26+ - The output ` pr-comment-updated ` is now ` pr-comment-deleted `
27+ - Note: ` delete-pr-comment ` defaults to ` true ` , so you can remove it if you want the comment deleted
28+
1029## [ 1.3.0] - 2026-02-02
1130
1231### Added
@@ -52,30 +71,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5271 - Automatically post/update a comment on PRs with the deployment URL
5372 - New inputs: ` comment-on-pr ` , ` github-token ` , ` comment-header `
5473 - Upsert behavior: updates existing comment instead of creating duplicates
55- - ** cleanup** action: PR comment delete feature
56- - Delete the deploy PR comment when PR is closed (default: enabled)
57- - New inputs: ` delete-pr-comment ` , ` comment-header `
58- - New output: ` pr-comment-deleted `
59-
6074- CI/CD pipeline with ShellCheck, actionlint, and yamllint
6175- Branch protection and governance files (CODEOWNERS, issue templates, PR template)
6276- CONTRIBUTING.md with development guidelines
6377- SECURITY.md with security policy
6478- Pre-commit hooks configuration
6579
66- ### Changed
67- - ** deploy** and ** cleanup** actions: ` github-token ` now defaults to ` github.token `
68- - No longer necessary to explicitly pass ` github-token: ${{ secrets.GITHUB_TOKEN }} `
69- - Only needed when using a custom PAT for cross-repository operations
70-
71- ### Removed
72- - ** BREAKING** ` cleanup ` action: ` update-pr-comment ` input (use ` delete-pr-comment ` instead)
73- - ** BREAKING** ` cleanup ` action: ` pr-comment-updated ` output (use ` pr-comment-deleted ` instead)
74-
75- ### Internal
76- - Added justfile for common development tasks
77- - Added pre-commit.ci configuration (weekly autoupdates, skip duplicates with CI)
78-
7980### Fixed
8081- ShellCheck warnings: properly quoted GITHUB_OUTPUT
8182- Actionlint configuration to only lint workflow files
@@ -103,6 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
103104- Secure handling of API keys via environment variables
104105- Dangerous character detection for container inputs
105106
107+ [ 2.0.0 ] : https://github.com/RijksICTGilde/zad-actions/releases/tag/v2.0.0
106108[ 1.3.0 ] : https://github.com/RijksICTGilde/zad-actions/releases/tag/v1.3.0
107109[ 1.2.0 ] : https://github.com/RijksICTGilde/zad-actions/releases/tag/v1.2.0
108110[ 1.1.0 ] : https://github.com/RijksICTGilde/zad-actions/releases/tag/v1.1.0
0 commit comments