Skip to content

Commit

Permalink
Merge pull request #20 from InfuseAI/feature/sc-31917/github-action-p…
Browse files Browse the repository at this point in the history
…iperider-compare-action-support

[Feature] sc-31917 Support `modified` and `select` options
  • Loading branch information
kentwelcome authored Jul 26, 2023
2 parents d588ea1 + 9aaaae6 commit 6bc2f2f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ The following basic parameters are available:
| github_token | No | This input is optional and can be set as GITHUB_TOKEN or as a personal access token with repository access. The default value is ${{ github.token }}. |
| recipe | No | This input is optional and allows you to specify the recipe to use for the comparison. If not specified, the default recipe located at .piperider/compare/default.yml will be used. |
| working_directory | No | This input is optional and allows you to specify the working directory to use for the comparison. If not specified, the default working directory will be used. |
| modified | No | Only compare the modified models if set to `True`. |
| select | No | Specify the dbt nodes to include. |
| piperider_version | No | This input is optional and allows you to specify the version of PipeRider to use for the comparison. If not specified, the latest version will be used. |
### (Optional) PipeRider Cloud Parameters
<details><summary>The following parameters are available for using PipeRider Cloud:</summary>
Expand Down
7 changes: 7 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ inputs:
recipe:
description: 'The recipe to use for the comparison'
required: false
modified:
description: 'Only compare the modified models'
default: false
required: false
select:
description: 'Specify the dbt nodes to include'
required: false
upload:
description: 'Whether to upload the comparison results to the cloud'
required: false
Expand Down
7 changes: 7 additions & 0 deletions compare-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ inputs:
recipe:
description: 'The recipe to use for the comparison'
required: false
modified:
description: 'Only compare the modified models'
default: false
required: false
select:
description: 'Specify the dbt nodes to include'
required: false
upload:
description: 'Whether to upload the comparison results to the cloud'
required: false
Expand Down

0 comments on commit 6bc2f2f

Please sign in to comment.