Release/0.16.0 - #119
Merged
Merged
Conversation
This workflow automatically: - Adds new issues and PRs to the podaac project - Sets their status to 'needs:triage' Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This workflow automatically, when team label is assigned to an issue: - Set podaac project status to triage - Assign to the team github project when it exists, with a New status. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This workflow automatically, when team label is assigned to an issue: - Set podaac project status to triage - Assign to the team github project when it exists, with a New status. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
# Conflicts: # pyproject.toml
This workflow is being removed from the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com>
This workflow is being deployed across the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com>
This workflow is being deployed across the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com>
This workflow is being removed from the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com>
This workflow is being deployed across the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com>
* update python libraries for cumulus consolidation efforts * update changelog * update changelog * update changelog and workflow * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * poetry update * update cumulus-process minimum version --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
jamesfwood
requested changes
Jul 1, 2026
|
|
||
| ### Added | ||
| ### Changed | ||
| - [issue/116](https://github.com/podaac/tig/issues/116): Poetry update python libraries for cumulus consolidation. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR prepares the 0.16.0 release line by bumping the Python package version/dependency, updating the changelog, and adding GitHub Actions automation to keep PODAAC project boards in sync with issue/PR lifecycle events.
Changes:
- Added organization-level project automation workflows for adding items to the PODAAC project, updating closed PR status, and assigning labeled issues to team projects.
- Updated
CHANGELOG.mdlinks/entries for repository consistency and added a new0.16.0section. - Bumped
pyproject.tomlversion to0.16.0rc1and updatedcumulus-processdependency; updated checkout action versions in existing workflows.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
pyproject.toml |
Bumps package version to 0.16.0rc1 and updates cumulus-process constraint. |
CHANGELOG.md |
Adds a 0.16.0 section and normalizes several issue links to podaac/tig. |
.github/workflows/org-add-to-project.yml |
New workflow to add opened issues/PRs to PODAAC project and set status to needs:triage. |
.github/workflows/org-close-pr-status.yml |
New workflow to set PODAAC project status to closed when a PR closes. |
.github/workflows/org-team-assignment.yml |
New workflow to react to team:<name> labels by updating status and adding issues to matching team projects. |
.github/workflows/build.yml |
Updates actions/checkout version. |
.github/workflows/.release-created.yml |
Updates actions/checkout version for release automation. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - [issue/26](https://github.com/podaac/tig/issues/26): Added cli command to generate hitide configurations for tig/forge | ||
| - ** Added in swot expert image generation ** | ||
| - [issue/18] (https://github.com/podaac/hitide/issues/18): Added in code to generate ssha_karin_2 in swot expert | ||
| - [issue/18](https://github.com/podaac/hitide/issues/18): Added in code to generate ssha_karin_2 in swot expert |
Comment on lines
1
to
4
| [tool.poetry] | ||
| name = "podaac-thumbnail-generator" | ||
| version = "0.15.0" | ||
| version = "0.16.0rc1" | ||
| description = "Tool for Image Generation (TIG)" |
Comment on lines
+5
to
+10
| on: | ||
| issues: | ||
| types: [opened] | ||
| pull_request: | ||
| types: [opened] | ||
|
|
Comment on lines
+5
to
+8
| on: | ||
| pull_request: | ||
| types: [closed] | ||
|
|
| @@ -0,0 +1,129 @@ | |||
| # used to triage new issues and PRs on project board, so not to miss external feedback or contributions of users. | |||
jamesfwood
approved these changes
Jul 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several significant improvements to project automation and documentation, as well as minor dependency and workflow updates. The most notable changes are the addition of new GitHub Actions workflows to automate project board management and team assignment, updates to the changelog for accuracy and consistency, and minor version and workflow dependency updates.
Project automation and workflow enhancements:
.github/workflows/org-add-to-project.ymlto automatically add new issues and pull requests to the PODAAC project board and set their status to "needs:triage"..github/workflows/org-close-pr-status.ymlto automatically update the project status to "closed" when a pull request is closed, reducing manual triage..github/workflows/org-team-assignment.ymlto automate the assignment of issues to team projects and update their status to "triaged" when labeled with ateam:<team_name>label.Documentation and changelog updates:
CHANGELOG.mdto reference the correct repository (tiginstead ofhitide) in issue links and added entries for recent changes, improving clarity and accuracy. [1] [2] [3] [4] [5]Dependency and workflow version updates:
pyproject.tomlto0.16.0rc1to reflect the new release candidate.actions/checkoutfromv6tov7in workflow files for improved security and features. (.github/workflows/.release-created.yml,.github/workflows/build.yml) [1] [2] [3]