Skip to content

Commit

Permalink
chore(release): 1.3.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.3.0](v1.2.0...v1.3.0) (2024-11-01)

### Bug Fixes

* update commitlint config ([90f7383](90f7383))
* update workflow and release config ([85b2800](85b2800))
* update workflow config ([0b7889e](0b7889e))
* update workflow triggers ([f3c447c](f3c447c))

### Features

* add eslint config ([0dc21fe](0dc21fe))
* add husky and update lint config ([7f5aace](7f5aace))
* add readme ([c349cf4](c349cf4))
  • Loading branch information
semantic-release-bot committed Nov 1, 2024
1 parent 7675c3b commit b0035e6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 11 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# [1.3.0](https://github.com/junjie-w/compliment-bot-action/compare/v1.2.0...v1.3.0) (2024-11-01)


### Bug Fixes

* update commitlint config ([90f7383](https://github.com/junjie-w/compliment-bot-action/commit/90f73838eaa5e2fdf60e9399e3a9194627b33d0d))
* update workflow and release config ([85b2800](https://github.com/junjie-w/compliment-bot-action/commit/85b2800553057b6f695cc8dc1dce2f5a4adf220b))
* update workflow config ([0b7889e](https://github.com/junjie-w/compliment-bot-action/commit/0b7889e187f1fb2ab5a5d00dc1378036d0842f7b))
* update workflow triggers ([f3c447c](https://github.com/junjie-w/compliment-bot-action/commit/f3c447c4eed66839596af0565274d9340d275ed2))


### Features

* add eslint config ([0dc21fe](https://github.com/junjie-w/compliment-bot-action/commit/0dc21fe0efb2ee99e02abf2440ad65d6e4c0a4f2))
* add husky and update lint config ([7f5aace](https://github.com/junjie-w/compliment-bot-action/commit/7f5aace46247478bd136219f5febeacecbe6b7e4))
* add readme ([c349cf4](https://github.com/junjie-w/compliment-bot-action/commit/c349cf40d30aa4e938221f551a29eebd8eef6a9a))

# [1.2.0](https://github.com/junjie-w/compliment-bot-action/compare/v1.1.2...v1.2.0) (2024-10-29)


Expand Down
23 changes: 12 additions & 11 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25640,19 +25640,19 @@ module.exports = {

const compliments = {
enthusiastic: [
"You're on fire! 🔥🔥🔥 Keep crushing it! 🚀",
"You're unstoppable! 💪 Let's dominate this code! 💻",
"Woohoo! You're amazing! 😎🙌 Keep up the great work! 🎉🎉",
'You\'re on fire! 🔥🔥🔥 Keep crushing it! 🚀',
'You\'re unstoppable! 💪 Let\'s dominate this code! 💻',
'Woohoo! You\'re amazing! 😎🙌 Keep up the great work! 🎉🎉',
],
funny: [
"You deserve a cookie for this push 🍪!",
"Holy code! You're making magic happen 🧙‍♂️✨!",
"If coding was an Olympic sport, you'd get gold 🥇💻!",
'You deserve a cookie for this push 🍪!',
'Holy code! You\'re making magic happen 🧙‍♂️✨!',
'If coding was an Olympic sport, you\'d get gold 🥇💻!',
],
motivational: [
"Keep pushing! You're doing incredible work 🚀",
"Believe in your code! It's changing the world 🌍",
"You've got this! Every line of code counts 🧠💻",
'Keep pushing! You\'re doing incredible work 🚀',
'Believe in your code! It\'s changing the world 🌍',
'You\'ve got this! Every line of code counts 🧠💻',
],
};

Expand Down Expand Up @@ -27590,11 +27590,12 @@ module.exports = parseParams
/************************************************************************/
var __webpack_exports__ = {};
const core = __nccwpck_require__(7484);

const { generateCompliment } = __nccwpck_require__(3156);

try {
const developerName = core.getInput("developer_name");
const complimentStyle = core.getInput("compliment_style");
const developerName = core.getInput('developer_name');
const complimentStyle = core.getInput('compliment_style');

const compliment = generateCompliment(developerName, complimentStyle);

Expand Down

0 comments on commit b0035e6

Please sign in to comment.