Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 0 additions & 50 deletions azure-pipelines-templates/code_style_validation.yml

This file was deleted.

15 changes: 14 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

resources:
repositories:
- repository: templates
type: github
name: shotgunsoftware/tk-ci-tools
ref: refs/heads/ticket/SG-41463
Copy link

Copilot AI Dec 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pipeline references a feature branch (ticket/SG-41463) instead of a stable release or main branch. This creates a dependency on a temporary branch and will break when the branch is deleted after merge. Consider using a specific release tag or the main branch reference.

Suggested change
ref: refs/heads/ticket/SG-41463
ref: refs/heads/main

Copilot uses AI. Check for mistakes.
endpoint: shotgunsoftware
### Yes, this is not Toolkit but tk-ci-tools is a useful utility that we can use to avoid duplicating and maintaing CI pipelines
Copy link

Copilot AI Dec 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'maintaing' to 'maintaining'.

Suggested change
### Yes, this is not Toolkit but tk-ci-tools is a useful utility that we can use to avoid duplicating and maintaing CI pipelines
### Yes, this is not Toolkit but tk-ci-tools is a useful utility that we can use to avoid duplicating and maintaining CI pipelines

Copilot uses AI. Check for mistakes.

# We've stored some variables in Azure. They contain credentials
# and are encrypted. They are also not available to clients.
# This statement says which variable groups this repo requires.
Expand All @@ -51,7 +60,11 @@ pr:
# This here is the list of jobs we want to run for our build.
# Jobs run in parallel.
jobs:
- template: azure-pipelines-templates/code_style_validation.yml
- template: build-pipeline.yml@templates
parameters:
has_unit_tests: false # Python API does not follow the same Python version lifecycle than Toolkit
has_ui_resources: false

- template: azure-pipelines-templates/type_checking.yml

# These are jobs templates, they allow to reduce the redundancy between
Expand Down
1 change: 1 addition & 0 deletions shotgun_api3/shotgun.py
Original file line number Diff line number Diff line change
Expand Up @@ -1898,6 +1898,7 @@ def export_page(self, page_id, format, layout_name=None):
"ID,Name,Status\\n1,Shot 001,ip\\n2, Shot 002,rev\\n"
>>> sg.export_page(12345, "csv")
"ID,Name,Status\\n1,Shot 001,ip\\n2,Shot 002,rev\\n"

:param int page_id: The ID of the page to export.
:param str format: The format to export the page to. Supported format is ``"csv"``.
:param str layout_name: Optional layout name. This should be the name of the layout seen in the Flow Production Tracking UI.
Expand Down