Skip to content

Commit

Permalink
fix: update-pull-requests are muted
Browse files Browse the repository at this point in the history
hence, we need to use a mutable sequence type, such as list, rather than
tuple.
  • Loading branch information
ccwienk committed Jan 13, 2025
1 parent 1e7c2d5 commit d7e0efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concourse/steps/update_component_deps.mako
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ git_helper.rebase(
commit_ish=REPO_BRANCH,
)
upgrade_pull_requests = tuple(
upgrade_pull_requests = list(
pull_request_util.enumerate_upgrade_pull_requests(
state='all',
),
Expand Down

0 comments on commit d7e0efa

Please sign in to comment.