Skip to content

feat: migrate from standalone actions#2

Merged
ReenigneArcher merged 4 commits intomasterfrom
feat/migrate-from-standalone-actions
Jun 27, 2025
Merged

feat: migrate from standalone actions#2
ReenigneArcher merged 4 commits intomasterfrom
feat/migrate-from-standalone-actions

Conversation

@ReenigneArcher
Copy link
Member

@ReenigneArcher ReenigneArcher commented Jun 21, 2025

Description

TODO:

  • migrate remaining actions
  • release via ci
  • branch protection rules

Screenshot

Issues Fixed or Closed

Type of Change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Dependency update (updates to dependencies)
  • Documentation update (changes to documentation)
  • Repository update (changes to repository files, e.g. .github/...)

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have added or updated the in code docstring/documentation-blocks for new or existing methods/components

@codecov
Copy link

codecov bot commented Jun 21, 2025

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 ☂️

@ReenigneArcher ReenigneArcher force-pushed the feat/migrate-from-standalone-actions branch 4 times, most recently from 7fe4d2b to 2ba5c21 Compare June 22, 2025 14:31
@ReenigneArcher ReenigneArcher force-pushed the feat/migrate-from-standalone-actions branch 24 times, most recently from b2b8957 to e2edf77 Compare June 22, 2025 16:31
@ReenigneArcher ReenigneArcher force-pushed the feat/migrate-from-standalone-actions branch 24 times, most recently from e09b058 to 06a4dff Compare June 25, 2025 02:46
@sonarqubecloud
Copy link

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

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"
Copy link

Copilot AI Jun 27, 2025

Choose a reason for hiding this comment

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

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'.

Suggested change
# 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")

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

actions: move release actions to single repo

2 participants