On Jul 1, 2020, at 08:37, '
mdha...@xometry.com' via Sqitch Users <
sqitch...@googlegroups.com> wrote:
> - when I create a table in my git repo in deploy folder (without doing with sqitch add, just normally adding the new file) and when I create a pr, I want sqitch to be integrated to my git repo, so that it will automatically add the new table/ rework we added in the deploy folder into the sqitch plan without manually adding it and then do the step 2
No, but you could manually add it to the plan file by copying a previous change and editing it. The format for a change is:
$change_name [space-delimited list of dependencies] $ISO8601-UTC-Date $author_name <$email> # Note with whatever UTF-8 characters you like, as long as it stays on a single line.
Example from the tutorial:
lists [users] 2013-12-31T19:28:05Z Marge N. O’Vera <
ma...@example.com> # Adds table for storing lists.
A tag is similar, but always starts with an @ sign (change names must not include spaces or at signs):
@$tag_name $ISO8601-UTC-Date $author_name <$email> # UTF-8 Note
Again from the tutorial:
@v1.0.0-dev2 2013-12-31T19:52:13Z Marge N. O’Vera <
ma...@example.com> # Tag v1.0.0-dev2.
So you can do it manually, and in your pipeline Sqitch will complain if there’s an error. But I have to ask: what’s the barrier from your team to installing and using Sqitch?
Best,
David