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
Copy file name to clipboardExpand all lines: sqlmesh/integrations/github/cicd/command.py
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
importlogging
4
4
importtraceback
5
+
importtypingast
5
6
6
7
importclick
7
8
@@ -25,16 +26,24 @@
25
26
envvar="GITHUB_TOKEN",
26
27
help="The Github Token to be used. Pass in `${{ secrets.GITHUB_TOKEN }}` if you want to use the one created by Github actions",
27
28
)
29
+
@click.option(
30
+
"--select-model",
31
+
"-m",
32
+
type=str,
33
+
multiple=True,
34
+
help="Specify one or more models to data diff. Use wildcards to diff multiple models. Ex: '*' (all models with applied plan diffs), 'demo.model+' (this and downstream models), 'git:feature_branch' (models with direct modifications in this branch only)",
0 commit comments