File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -60,5 +60,6 @@ These are the options recommended to be changed. For more detailed explanation o
6060
6161# # Release History
6262
63+ - v0.0.2 - Error handling using GitHub actions
6364- v0.0.1 - Update icon and color for GitHub actions
6465- v0.0.0 - Initial release
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ const getData = () => {
114114
115115 console . log ( `✅ ${ action === 'opened' ? 'Added' : 'Moved' } card to ${ column } in ${ project } ` ) ;
116116 } catch ( error ) {
117- console . error ( error ) ;
117+ core . error ( error ) ;
118+ core . setFailed ( error . message ) ;
118119 }
119120} ) ( ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " github-project-automation-plus" ,
3- "version" : " 0.0.1 " ,
3+ "version" : " 0.0.2 " ,
44 "description" : " 🤖 Automate GitHub Project cards with any webhook event" ,
55 "private" : true ,
66 "main" : " dist/index.js" ,
You can’t perform that action at this time.
0 commit comments