slackapi / deno-slack-hub

Connectors used to build coded workflows for Run on Slack apps using Deno
https://deno.land/x/deno_slack_hub
MIT License
9 stars 3 forks source link

[BUG] Improve the commit stage #16

Closed WilliamBergamin closed 1 year ago

WilliamBergamin commented 1 year ago

Summary

This PR aims to resolve the issue found in #15

In the Generate GitHub action the commit changes step uses git commit -a in order to commit generated changes to a branch.

The -a flag is described as commit all changed files, this will not add changes from all tracked and untracked files

The git add --all will properly do this, this PR aims to improve the commit changes stage by using git add --all and add changes from all tracked and untracked files

Testing: I've tested this on my fork and this changes should fix the BUG, here is the PR opened on the fork

Requirements

filmaj commented 1 year ago

Woops the failing test was me, adding a link to the README! my bad! let's just fix it in this PR 😄