Skip to content

Migration GitHub to circleci #1185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 43 commits into from
Dec 23, 2024
Merged

Conversation

raffaele-oplabs
Copy link
Contributor

@raffaele-oplabs raffaele-oplabs commented Dec 19, 2024

This pull request consolidates multiple GitHub Actions workflows into a single CircleCI configuration file, streamlining the CI/CD process. The changes include adding new executors and commands in CircleCI, and removing the corresponding GitHub Actions workflows.

CircleCI Configuration Enhancements:

  • .circleci/config.yml: Added CircleCI configuration with executors for Node.js, Ubuntu, and Rust, and defined jobs for Algolia indexing, breadcrumbs check, Markdown linting, link checking, and developer metrics reporting.

Removal of GitHub Actions Workflows:

…package management in publish-algolia-search job
@raffaele-oplabs raffaele-oplabs requested a review from a team as a code owner December 19, 2024 15:06
Copy link

netlify bot commented Dec 19, 2024

Deploy Preview for docs-optimism ready!

Name Link
🔨 Latest commit 7074017
🔍 Latest deploy log https://app.netlify.com/sites/docs-optimism/deploys/6765e73eaca6400008348672
😎 Deploy Preview https://deploy-preview-1185--docs-optimism.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

coderabbitai bot commented Dec 19, 2024

📝 Walkthrough
📝 Walkthrough

Walkthrough

The pull request introduces an updated CircleCI configuration file (.circleci/config.yml) that defines a CI/CD pipeline using version 2.1 of the CircleCI configuration syntax. A new orb for Ethereum utilities is added, specifically ethereum-optimism/circleci-utils@0.0.7. Three executors are defined: node20 for Node.js 20.x, ubuntu for general Ubuntu tasks, and rust for Rust-related jobs.

A command setup-node is introduced, which installs Node.js and the package manager pnpm, restores a cache based on the pnpm-lock.yaml checksum, installs project dependencies, and saves the cache for future builds. Several new jobs are defined, including algolia, breadcrumbs, lint, links, and developer-metrics. New workflows are introduced: merge-workflow, which runs the algolia job on the main branch, pr-workflow, which runs the breadcrumbs, links, and lint jobs, and monthly-workflow, which triggers the developer-metrics job based on a schedule.

Additionally, multiple GitHub Actions workflows are deleted, including those for Algolia indexing, breadcrumb checks, link checks, linting, and monthly issue and PR metrics reporting. The overall structure of the CI/CD pipeline is expanded to include additional functionality for error handling, reporting, and scheduled jobs.

Sequence Diagram

sequenceDiagram
    participant CircleCI
    participant GitHub
    participant Algolia
    participant DeveloperMetrics

    CircleCI->>GitHub: Trigger merge-workflow
    GitHub->>CircleCI: Run algolia job
    CircleCI->>Algolia: Create and upload index
    CircleCI->>GitHub: Trigger pr-workflow
    GitHub->>CircleCI: Run breadcrumbs, links, lint jobs
    CircleCI->>DeveloperMetrics: Trigger monthly-workflow
    DeveloperMetrics->>CircleCI: Generate metrics report
Loading

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 4

🧹 Nitpick comments (2)
.circleci/config.yml (2)

1-4: Consider updating to the latest Node.js orb version

The configuration uses circleci/node@7.0.0, but version 7.0.1 is available with bug fixes and improvements.

-  node: circleci/node@7.0.0
+  node: circleci/node@7.0.1

5-17: Maintain consistency in executor configurations

The working_directory is only set for the Rust executor. Consider setting it consistently across all executors for better maintainability.

  node20:
    docker:
      - image: cimg/node:20.11.1
    resource_class: medium
+   working_directory: ~/project
  ubuntu:
    machine:
      image: ubuntu-2204:current
+   working_directory: ~/project
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3abb097 and c45b557.

📒 Files selected for processing (1)
  • .circleci/config.yml (1 hunks)

@sbvegan
Copy link
Collaborator

sbvegan commented Dec 19, 2024

@raffaele-oplabs you've requested review, can you update the description to clarify if we're clear to merge if everything looks good?

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between c45b557 and bc5b6cf.

📒 Files selected for processing (1)
  • .circleci/config.yml (1 hunks)
🔇 Additional comments (3)
.circleci/config.yml (3)

19-39: Optimize Node.js setup and improve error handling

Several improvements can be made to the setup-node command:

  1. Node.js installation is redundant when using the node20 executor
  2. pnpm is installed globally twice
  3. The curl command lacks error handling

50-53: ⚠️ Potential issue

Secure sensitive Algolia credentials

The Algolia credentials are exposed as environment variables in the job configuration. While they are referenced as variables, ensure they are properly secured in the CircleCI context.

Recommendations:

  1. Verify that the algolia-search context is properly configured
  2. Consider using CircleCI's encrypted environment variables
  3. Add documentation about required context setup
✅ Verification successful

Environment variables are properly documented and handled

The Algolia credentials in the CircleCI configuration are properly referenced and documented. The notes/algolia-search.md file clearly outlines:

  • The required environment variables and their purpose
  • Documentation for the indexing process
  • Automated handling through CI/CD

The environment variables are:

  • Used as expected in the CI configuration
  • Properly documented in the repository
  • Following security best practices by using CircleCI's environment variable references
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if the context exists and contains the required environment variables
circleci context list ethereum-optimism | grep algolia-search
circleci context show ethereum-optimism/algolia-search

Length of output: 318


Script:

#!/bin/bash
# Let's check if these environment variables are referenced in other configuration files
# or if there's any documentation about their setup
rg -l "ALGOLIA" --type yaml
rg -l "algolia" --type md

Length of output: 93


Script:

#!/bin/bash
# Let's check the content of these files to understand how the Algolia credentials are documented
cat notes/algolia-search.md
cat notes/README.md

Length of output: 1662


4-4: Consider using a more stable version of the custom orb

The ethereum-optimism/circleci-utils orb is at version 0.0.6, which suggests it's in early development. Early versions may contain breaking changes or bugs.

Consider:

  1. Pin to a more stable version if available
  2. Document any known limitations or issues with this early version

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (2)
.circleci/config.yml (2)

3-5: Pin orb versions more strictly for better stability

Consider updating the orb versions:

  1. Pin node orb to a specific patch version for better stability
  2. The utils orb is in early development (0.x.x) which may introduce breaking changes
-  node: circleci/node@7.0.0
-  utils: ethereum-optimism/circleci-utils@0.0.6
+  node: circleci/node@7.0.1
+  utils: ethereum-optimism/circleci-utils@0.0.6 # TODO: Update when 1.0.0 is released

21-53: Add environment variable validation for Slack notifications

The Slack notification command should validate the required environment variables before attempting to send notifications.

  notify_slack_on_failure:
    steps:
+     - run:
+         name: Validate Slack environment variables
+         command: |
+           if [ -z "${SLACK_DEFAULT_CHANNEL}" ]; then
+             echo "Error: SLACK_DEFAULT_CHANNEL is not set"
+             exit 1
+           fi
      - slack/notify:
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between bc5b6cf and 4b05cf5.

📒 Files selected for processing (1)
  • .circleci/config.yml (1 hunks)
🔇 Additional comments (3)
.circleci/config.yml (3)

14-14: Pin Ubuntu image version for consistent builds

Using the current tag for the Ubuntu image could lead to inconsistent builds as the image may change unexpectedly.


54-72: Optimize Node.js setup and improve error handling

Several improvements can be made to the setup-node command.


246-299: ⚠️ Potential issue

Add missing workflow features from GitHub Actions

Several critical features are missing from the CircleCI configuration:

  1. Concurrency controls for workflows
  2. Some GitHub Actions workflows haven't been migrated

Add concurrency controls to prevent multiple builds of the same branch:

 workflows:
   pr-workflow:
+    when:
+      and:
+        - not:
+            equal: [scheduled_pipeline, << pipeline.trigger_source >>]
     jobs:
       - breadcrumbs:
+          name: << pipeline.git.branch >>
           filters:
             branches:
               only:
                 - main
                 - /pull\/\d+/

@raffaele-oplabs raffaele-oplabs changed the title Migration GitHub to circleci DO-NOT-MERGE --- Migration GitHub to circleci --- DO-NOT-MERGE Dec 20, 2024
@raffaele-oplabs raffaele-oplabs self-assigned this Dec 20, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (1)
.circleci/config.yml (1)

16-18: Specify resource class for Rust executor

The node20 executor has a specified resource class, but the rust executor doesn't. Consider adding a resource class to ensure consistent resource allocation.

   rust:
     docker:
       - image: cimg/rust:1.75.0 # CircleCI's Rust Docker image
+    resource_class: medium
     working_directory: ~/project
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4b05cf5 and 5a77383.

📒 Files selected for processing (1)
  • .circleci/config.yml (1 hunks)
🔇 Additional comments (6)
.circleci/config.yml (6)

14-14: Pin Ubuntu image version for consistent builds

Using the current tag for the Ubuntu image could lead to inconsistent builds as the image may change unexpectedly.

-      image: ubuntu-2204:current
+      image: ubuntu-2204:2024.01.1

54-73: Optimize Node.js setup and improve error handling

Several improvements can be made to the setup-node command:

  1. Node.js installation is redundant when using the node20 executor
  2. pnpm is installed globally twice
  3. The curl command lacks error handling
  setup-node:
    steps:
      - run:
          name: Install Node.js (20.x) and pnpm
          command: |
-           curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
-           sudo apt-get install -y nodejs
-           npm install -g pnpm
+           if [ ! -x "$(command -v node)" ]; then
+             curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - || exit 1
+             sudo apt-get install -y nodejs
+           fi
+           if [ ! -x "$(command -v pnpm)" ]; then
+             npm install -g pnpm
+           fi
            pnpm --version
      - restore_cache:
          keys:
            - v1-pnpm-cache-{{ checksum "pnpm-lock.yaml" }}
      - run:
          name: Install dependencies
-         command: npm install -g pnpm && pnpm install
+         command: pnpm install

107-141: Enhance security and reliability of links job

Several improvements can be made to the job:

  1. The Lychee repository should be pinned to a specific version
  2. Long-running operations should have timeouts
  3. Consider using pre-built Lychee binary instead of building from source
      - run:
          name: Checkout lycheeverse/lychee
          command: |
-           git clone https://github.com/lycheeverse/lychee.git lychee
+           git clone --depth 1 --branch v0.14.3 https://github.com/lycheeverse/lychee.git lychee
+         no_output_timeout: 10m

      - run:
          name: Build Lychee
          command: |
            cd lychee
            cargo build --release
+         no_output_timeout: 20m

210-244: Create a reusable command for tutorial jobs

The tutorial jobs share similar structure. Consider creating a reusable command to reduce duplication.

+commands:
+  run-tutorial:
+    parameters:
+      script:
+        type: string
+    steps:
+      - checkout
+      - setup-node
+      - run:
+          name: Run tutorial
+          command: node << parameters.script >>
+          environment:
+            TUTORIAL_PRIVATE_KEY: ${TUTORIAL_PRIVATE_KEY}
+      - notify_slack_on_failure

 jobs:
   cross-dom-bridge-eth:
     executor: ubuntu
     steps:
-      - checkout
-      - setup-node
-      - run:
-          name: Run tutorial
-          command: node ./public/tutorials/cross-dom-bridge-eth.js
-          environment:
-            TUTORIAL_PRIVATE_KEY: ${TUTORIAL_PRIVATE_KEY}
-      - notify_slack_on_failure
+      - run-tutorial:
+          script: ./public/tutorials/cross-dom-bridge-eth.js

246-279: Clean up and improve workflow configuration

Several improvements are recommended:

  1. Remove commented out code
  2. Consider adding job dependencies using requires
  3. Improve pull request branch pattern
workflows:
  merge-workflow:
    jobs:
      - algolia:
          context: algolia-search
          filters:
            branches:
              only: main

-      # - algolia:
-      #     name: Algolia Index Update
-      #     context: algolia-search
-      #     filters:
-      #       branches:
-      #         only: main
  pr-workflow:
    jobs:
      - breadcrumbs:
          name: Breadcrumb Check
          filters:
            branches:
              only:
                - main
-               - /pull\/\d+/
+               - /pull\/.*/
-      - links
+      - links:
+          requires:
+            - "Breadcrumb Check"

246-302: CircleCI configuration requires additional workflow features

The CircleCI configuration is missing several critical features present in the GitHub Actions workflows:

  1. Tutorial verification workflow with sequential jobs:
    • Missing concurrency controls (concurrency.group and cancel-in-progress settings)
  2. Slack notifications:
    • GitHub Actions has Slack notifications configured for tutorial failures
  3. Monthly metrics workflows:
    • Missing permissions configuration for issues and pull requests

Please update the CircleCI configuration to include these missing features before completing the migration.

#!/bin/bash
# Check for existing GitHub Actions workflows
echo "Checking for GitHub Actions workflows..."
fd -e yml -e yaml . .github/workflows/

echo "Analyzing workflow files..."
for file in $(fd -e yml -e yaml . .github/workflows/); do
  echo "=== $file ==="
  yq '.jobs | keys' "$file" 2>/dev/null
done

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🧹 Nitpick comments (1)
.circleci/config.yml (1)

15-18: Specify resource class for Rust executor

The rust executor should specify a resource class to ensure consistent resource allocation, similar to the node20 executor.

  rust:
    docker:
      - image: cimg/rust:1.75.0 # CircleCI's Rust Docker image
+   resource_class: medium
    working_directory: ~/project
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 18f8209 and 214be75.

📒 Files selected for processing (1)
  • .circleci/config.yml (1 hunks)
🔇 Additional comments (5)
.circleci/config.yml (5)

14-14: Pin Ubuntu image version for consistent builds

Using the current tag for the Ubuntu image could lead to inconsistent builds as the image may change unexpectedly.

-      image: ubuntu-2204:current
+      image: ubuntu-2204:2024.01.1

54-73: Optimize Node.js setup and improve error handling

Several improvements can be made to the setup-node command:

  1. Node.js installation is redundant when using the node20 executor
  2. pnpm is installed globally twice
  3. The curl command lacks error handling
  setup-node:
    steps:
      - run:
          name: Install Node.js (20.x) and pnpm
          command: |
-           curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
-           sudo apt-get install -y nodejs
-           npm install -g pnpm
+           if [ ! -x "$(command -v node)" ]; then
+             curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - || exit 1
+             sudo apt-get install -y nodejs
+           fi
+           if [ ! -x "$(command -v pnpm)" ]; then
+             npm install -g pnpm
+           fi
            pnpm --version
      - restore_cache:
          keys:
            - v1-pnpm-cache-{{ checksum "pnpm-lock.yaml" }}
      - run:
          name: Install dependencies
-         command: npm install -g pnpm && pnpm install
+         command: pnpm install

109-143: Enhance security and reliability of links job

Several improvements can be made to the job:

  1. The Lychee repository should be pinned to a specific version
  2. Long-running operations should have timeouts
  3. Consider using pre-built Lychee binary instead of building from source
      - run:
          name: Checkout lycheeverse/lychee
          command: |
-           git clone https://github.com/lycheeverse/lychee.git lychee
+           git clone --depth 1 --branch v0.14.3 https://github.com/lycheeverse/lychee.git lychee
+         no_output_timeout: 10m

      - run:
          name: Build Lychee
          command: |
            cd lychee
            cargo build --release
+         no_output_timeout: 20m

187-221: Create a reusable command for tutorial jobs

The tutorial jobs share similar structure. Consider creating a reusable command to reduce duplication.

+commands:
+  run-tutorial:
+    parameters:
+      script:
+        type: string
+    steps:
+      - checkout
+      - setup-node
+      - run:
+          name: Run tutorial
+          command: node << parameters.script >>
+          environment:
+            TUTORIAL_PRIVATE_KEY: ${TUTORIAL_PRIVATE_KEY}
+      - notify_slack_on_failure

223-256: Migration to CircleCI is incomplete - several workflows are missing

The current CircleCI configuration only covers:

  • Algolia indexing
  • Breadcrumbs checking
  • Link checking

Missing workflows that need to be migrated:

  • Markdown linting workflow
  • Monthly issue metrics reporting
  • Monthly PR metrics reporting
  • Tutorial verification workflows (with 3 sequential jobs)

Key missing features:

  • Slack notifications for tutorial failures
  • Proper concurrency controls for tutorials
  • Scheduled runs for metrics and tutorials
  • Proper environment variable setup for tutorials

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

♻️ Duplicate comments (3)
.circleci/config.yml (3)

18-38: 🛠️ Refactor suggestion

Optimize Node.js setup and improve error handling

The setup-node command has redundant steps and lacks error handling.

  setup-node:
    steps:
      - run:
          name: Install Node.js (20.x) and pnpm
          command: |
-           curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
-           sudo apt-get install -y nodejs
-           npm install -g pnpm
+           if [ ! -x "$(command -v node)" ]; then
+             curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - || exit 1
+             sudo apt-get install -y nodejs
+           fi
+           if [ ! -x "$(command -v pnpm)" ]; then
+             npm install -g pnpm
+           fi
            pnpm --version
      - restore_cache:
          keys:
            - v1-pnpm-cache-{{ checksum "pnpm-lock.yaml" }}
      - run:
          name: Install dependencies
-         command: npm install -g pnpm && pnpm install
+         command: pnpm install

39-151: ⚠️ Potential issue

Migration to CircleCI is incomplete - several workflows are missing

The configuration is missing critical jobs from the GitHub Actions workflows.

Missing jobs:

  • Tutorial verification jobs (cross-dom-bridge-eth, send-tx-from-eth, sdk-estimate-costs)
  • Proper concurrency controls
  • Slack notifications for failures

74-108: 🛠️ Refactor suggestion

Enhance security and reliability of the links job

The Lychee link checker setup needs security improvements.

      - run:
          name: Checkout lycheeverse/lychee
          command: |
-           git clone https://github.com/lycheeverse/lychee.git lychee
+           git clone --depth 1 --branch v0.14.3 https://github.com/lycheeverse/lychee.git lychee
+         no_output_timeout: 10m

      - run:
          name: Build Lychee
          command: |
            cd lychee
            cargo build --release
+         no_output_timeout: 20m
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 214be75 and 7074017.

📒 Files selected for processing (4)
  • .circleci/config.yml (1 hunks)
  • .github/workflows/monthly-issue-metircs.yml (0 hunks)
  • .github/workflows/monthly-pr-metrics.yml (0 hunks)
  • .github/workflows/tutorials.yml (0 hunks)
💤 Files with no reviewable changes (3)
  • .github/workflows/tutorials.yml
  • .github/workflows/monthly-pr-metrics.yml
  • .github/workflows/monthly-issue-metircs.yml
🔇 Additional comments (2)
.circleci/config.yml (2)

11-13: 🛠️ Refactor suggestion

Pin Ubuntu image version for consistent builds

Using the current tag for the Ubuntu image could lead to inconsistent builds as the image may change unexpectedly.

-      image: ubuntu-2204:current
+      image: ubuntu-2204:2024.01.1

Likely invalid or redundant comment.


1-4: 🛠️ Refactor suggestion

Pin the utils orb to a stable version

Using a development version (0.0.7) of the utils orb can lead to unexpected behavior if the orb is updated.

-  utils: ethereum-optimism/circleci-utils@0.0.7
+  utils: ethereum-optimism/circleci-utils@1.0.0  # Replace with actual stable version

Likely invalid or redundant comment.

@raffaele-oplabs raffaele-oplabs changed the title DO-NOT-MERGE --- Migration GitHub to circleci --- DO-NOT-MERGE Migration GitHub to circleci Dec 20, 2024
@raffaele-oplabs raffaele-oplabs merged commit 2f3d699 into main Dec 23, 2024
6 of 8 checks passed
@raffaele-oplabs raffaele-oplabs deleted the migration-github-to-circleci branch December 23, 2024 13:31
This was referenced Feb 19, 2025
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.

2 participants