Skip to content

Commit

Permalink
chore: testing my contributions workflow v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
imskr committed Feb 24, 2024
1 parent c34ab3f commit c2850ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contributions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def run
`git config user.name #{git_username}`
`git config user.email #{git_email}`
status = `git status`
if !status.includes?("nothing to commit")
if !status.include?("nothing to commit")
`git add #{readme_path}`
`git commit -m "#{commit_message}"`
`git push origin HEAD`
`git push`
end
else
puts "Failed to retrieve merged pull requests: #{res.code} - #{res.message}"
Expand Down

0 comments on commit c2850ef

Please sign in to comment.