Skip to content

Commit

Permalink
Release 3.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
boredland committed Mar 6, 2020
1 parent 81948c2 commit f287657
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@ const rebase = async (args) => {

const getMardownGif = async (giphy, phrase) => {
const gif = await giphy.random(phrase);
return `![${phrase}](${gif.data.image_url})`
return `![${phrase}](${gif.data.fixed_height_small_url})`
}

const gifComment = (comment, gif, details) => {
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const rebase = async (args) => {

const getMardownGif = async (giphy, phrase) => {
const gif = await giphy.random(phrase);
return `![${phrase}](${gif.data.image_url})`
return `![${phrase}](${gif.data.fixed_height_small_url})`
}

const gifComment = (comment, gif, details) => {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-action-rebase",
"version": "3.0.9",
"version": "3.0.10",
"description": "rebase prs by entering \"/rebase\" as a comment",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit f287657

Please sign in to comment.