feat: migrate from standalone actions#2
Conversation
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. Thanks for integrating Codecov - We've got you covered ☂️ |
7fe4d2b to
2ba5c21
Compare
b2b8957 to
e2edf77
Compare
e09b058 to
06a4dff
Compare
|
There was a problem hiding this comment.
Pull Request Overview
This PR migrates several standalone GitHub actions into a unified, reusable monorepo‐style structure. Key changes include the addition of new action implementations (for Python setup, release setup, Homebrew release, release creation, release changelog, and Facebook posting) and corresponding tests and CI configuration updates.
Reviewed Changes
Copilot reviewed 54 out of 60 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| tests/... | New test modules added for each action (setup_python, release_setup, release_homebrew, release_create, release_changelog, facebook_post) to validate expected behavior. |
| actions/... | Multiple new action directories have been introduced with Dockerfiles, composite workflows, and action metadata to support the migration. |
| .github/workflows | CI configuration files updated to incorporate the new actions and matrix-based testing. |
| # use datetime.datetime and convert created at to yyyy.m.d-hhmmss | ||
| # GitHub can provide timestamps in different formats, ensure we handle them all using `fromisoformat` | ||
| # timestamp: "2023-01-25T10:43:35Z" | ||
| # timestamp "2024-07-14T13:17:25-04:00" |
There was a problem hiding this comment.
Consider handling ISO timestamps that end with a 'Z' explicitly (for example, by replacing 'Z' with '+00:00') before calling fromisoformat, as some Python versions may raise a ValueError with a trailing 'Z'.
| # timestamp "2024-07-14T13:17:25-04:00" | |
| # timestamp "2024-07-14T13:17:25-04:00" | |
| if iso_timestamp.endswith("Z"): | |
| iso_timestamp = iso_timestamp.replace("Z", "+00:00") |



Description
TODO:
Screenshot
Issues Fixed or Closed
Type of Change
.github/...)Checklist