File tree 4 files changed +1
-11
lines changed
4 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 3
3
## Unreleased
4
4
5
5
- Updated node runtime from 12 to 16
6
+ - Removed deprecated ` ref ` and ` sha ` outputs. If you're using these then you should switch to ` head_ref ` and ` head_sha ` respectively.
6
7
7
8
## [ 1.4.0] ( https://github.com/xt0rted/pull-request-comment-branch/compare/v1.3.0...v1.4.0 ) - 2022-10-23
8
9
Original file line number Diff line number Diff line change @@ -84,8 +84,6 @@ Name | Decription
84
84
` base_sha` | The head sha of the branch the pull request will merge into.
85
85
` head_ref` | The name of the pull request branch the comment belongs to.
86
86
` head_sha` | The head sha of the pull request branch the comment belongs to.
87
- ` ref` | Deprecated, use `head_ref` instead.
88
- ` sha` | Deprecated, use `head_sha` instead.
89
87
90
88
# # License
91
89
Original file line number Diff line number Diff line change @@ -23,11 +23,6 @@ outputs:
23
23
description : " The name of the pull request branch the comment belongs to."
24
24
head_sha :
25
25
description : " The head sha of the pull request branch the comment belongs to."
26
- # deprecated outputs
27
- ref :
28
- description : " Deprecated, use head_ref instead."
29
- sha :
30
- description : " Deprecated, use head_sha instead."
31
26
32
27
runs :
33
28
using : " node16"
Original file line number Diff line number Diff line change @@ -21,10 +21,6 @@ export async function run() {
21
21
setOutput ( "base_sha" , base_sha ) ;
22
22
setOutput ( "head_ref" , head_ref ) ;
23
23
setOutput ( "head_sha" , head_sha ) ;
24
-
25
- // Deprecated
26
- setOutput ( "ref" , head_ref ) ;
27
- setOutput ( "sha" , head_sha ) ;
28
24
} catch ( error ) {
29
25
if ( error instanceof Error ) {
30
26
setFailed ( error . message ) ;
You can’t perform that action at this time.
0 commit comments