Skip to content

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

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 19 times, most recently from 9652760 to 0614c20 Compare June 27, 2025 00:03
@ReenigneArcher ReenigneArcher force-pushed the feat/migrate-from-standalone-actions branch from 4f97130 to 13b825f Compare June 27, 2025 00:43
Copy link

@ReenigneArcher ReenigneArcher marked this pull request as ready for review June 27, 2025 00:44
@ReenigneArcher ReenigneArcher requested a review from Copilot June 27, 2025 00:47
Copy link

@Copilot 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
Preview

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.

@ReenigneArcher ReenigneArcher merged commit eaa583d into master Jun 27, 2025
36 checks passed
@ReenigneArcher ReenigneArcher deleted the feat/migrate-from-standalone-actions branch June 27, 2025 00:50
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
1 participant