You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the same command in every directory is a bit limiting. For example, when creating git commits, what we actually want to do is collect files from all directories (git add), and then just git commit once.
This happened here for example: ipfs/go-datastore#179.
Proposed API:
steps:
- name: Code Quality Checksuses: protocol/multiple-go-modules@masterwith:
working-directory: scriptspre: echo "I'm only run once, in the parent directory"run: touch file && git add filepost: git commit -m "add a file per directory"
Running the same command in every directory is a bit limiting. For example, when creating git commits, what we actually want to do is collect files from all directories (
git add
), and then justgit commit
once.This happened here for example: ipfs/go-datastore#179.
Proposed API:
@mvdan, what do you think?
The text was updated successfully, but these errors were encountered: