release-please-action icon indicating copy to clipboard operation
release-please-action copied to clipboard

PR not created for deps in node

Open sheuertz opened this issue 1 year ago • 1 comments

TL;DR

I squash and merged a commit with multiple deps commits, but it did not create a release PR.

Expected behavior

A new release PR is created.

Observed behavior

No PR was created.

Action YAML

name: Publish [redacted]
on:
  push:
    branches: 
      - main
  workflow_dispatch:
permissions:
  contents: write
  pull-requests: write
jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: google-github-actions/release-please-action@v4
        id: release
        with:
          release-type: node
      # The logic below handles the npm publication:
      - uses: actions/checkout@v4
        # these if statements ensure that a publication only occurs when
        # a new release is created:
        if: ${{ steps.release.outputs.release_created }}
      - uses: actions/setup-node@v4
        with:
          node-version: 16
          cache: yarn
          registry-url: [redacted]
          scope: [redacted]
        if: ${{ steps.release.outputs.release_created }}
      - run: yarn install --frozen-lockfile
        env:
          NODE_AUTH_TOKEN: ${{ secrets.NPM_PASSWORD }}
        if: ${{ steps.release.outputs.release_created }}
      - run: npm publish
        id: publish
        env:
          NODE_AUTH_TOKEN: ${{ secrets.NPM_PASSWORD }}
        if: ${{ steps.release.outputs.release_created }}
      # This sets the emoji if publish successful
      - run: echo "SLACK_EMOJI=:tada:"
        if: ${{ steps.release.outputs.release_created && steps.publish.outcome == 'success' }}
      # This sets the emoji if publish failed
      - run: echo "SLACK_EMOJI=:disappointed:"
        if: ${{ steps.release.outputs.release_created && steps.publish.outcome != 'success' }}
      - name: Slack Notification
        uses: rtCamp/action-slack-notify@v2
        env:
          SLACK_WEBHOOK: [redacted]
          SLACK_USERNAME: [redacted]
          # This is the only way to not get the default icon sent to our slack :/ There's no way to unset it currently
          SLACK_ICON: 'DUMMY'
          SLACK_ICON_EMOJI: ${{ env.SLACK_EMOJI }}
          SLACK_COLOR: ${{ job.status }}
          SLACK_TITLE: '[redacted] Release'
          SLACK_FOOTER: 
          MSG_MINIMAL: true
        if: ${{ steps.release.outputs.release_created }}

Log output

2024-01-11T19:39:55.4511482Z Requested labels: ubuntu-latest
2024-01-11T19:39:55.4511699Z Job defined at: [redacted]
2024-01-11T19:39:55.4511793Z Waiting for a runner to pick up this job...
2024-01-11T19:39:55.6445261Z Job is waiting for a hosted runner to come online.
2024-01-11T19:39:59.2252574Z Job is about to start running on the hosted runner: GitHub Actions 2 (hosted)
2024-01-11T19:40:01.4464053Z Current runner version: '2.311.0'
2024-01-11T19:40:01.4492279Z ##[group]Operating System
2024-01-11T19:40:01.4493005Z Ubuntu
2024-01-11T19:40:01.4493547Z 22.04.3
2024-01-11T19:40:01.4493959Z LTS
2024-01-11T19:40:01.4494362Z ##[endgroup]
2024-01-11T19:40:01.4494846Z ##[group]Runner Image
2024-01-11T19:40:01.4495401Z Image: ubuntu-22.04
2024-01-11T19:40:01.4495906Z Version: 20240107.1.0
2024-01-11T19:40:01.4497153Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240107.1/images/ubuntu/Ubuntu2204-Readme.md
2024-01-11T19:40:01.4498841Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240107.1
2024-01-11T19:40:01.4499886Z ##[endgroup]
2024-01-11T19:40:01.4500446Z ##[group]Runner Image Provisioner
2024-01-11T19:40:01.4501031Z 2.0.321.1
2024-01-11T19:40:01.4501401Z ##[endgroup]
2024-01-11T19:40:01.4502714Z ##[group]GITHUB_TOKEN Permissions
2024-01-11T19:40:01.4504595Z Contents: write
2024-01-11T19:40:01.4505194Z Metadata: read
2024-01-11T19:40:01.4505931Z PullRequests: write
2024-01-11T19:40:01.4506548Z ##[endgroup]
2024-01-11T19:40:01.4510215Z Secret source: Actions
2024-01-11T19:40:01.4511041Z Prepare workflow directory
2024-01-11T19:40:01.5275511Z Prepare all required actions
2024-01-11T19:40:01.5466700Z Getting action download info
2024-01-11T19:40:01.8206896Z Download action repository 'google-github-actions/release-please-action@v4' (SHA:cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e)
2024-01-11T19:40:02.2976260Z Download action repository 'actions/checkout@v4' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11)
2024-01-11T19:40:02.3370388Z Download action repository 'actions/setup-node@v4' (SHA:b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8)
2024-01-11T19:40:02.6624840Z Download action repository 'rtCamp/action-slack-notify@v2' (SHA:12e36fc18b0689399306c2e0b3e0f2978b7f1ee7)
2024-01-11T19:40:03.0133949Z Complete job name: publish
2024-01-11T19:40:03.0813681Z ##[group]Pull down action image 'ghcr.io/rtcamp/action-slack-notify:v2.2.0'
2024-01-11T19:40:03.0894440Z ##[command]/usr/bin/docker pull ghcr.io/rtcamp/action-slack-notify:v2.2.0
2024-01-11T19:40:03.5754099Z v2.2.0: Pulling from rtcamp/action-slack-notify
2024-01-11T19:40:03.5754729Z c9b1b535fdd9: Pulling fs layer
2024-01-11T19:40:03.5755128Z a10e936e4238: Pulling fs layer
2024-01-11T19:40:03.5755512Z 3cd78ecb91b7: Pulling fs layer
2024-01-11T19:40:03.5755874Z a81d8be8c51e: Pulling fs layer
2024-01-11T19:40:03.5756258Z 93beeb46ba19: Pulling fs layer
2024-01-11T19:40:03.5756631Z fae0d5848d18: Pulling fs layer
2024-01-11T19:40:03.5757022Z a772ef259cc5: Pulling fs layer
2024-01-11T19:40:03.5757372Z 93beeb46ba19: Waiting
2024-01-11T19:40:03.5757703Z fae0d5848d18: Waiting
2024-01-11T19:40:03.5758012Z a772ef259cc5: Waiting
2024-01-11T19:40:03.5758321Z a81d8be8c51e: Waiting
2024-01-11T19:40:03.7420025Z a10e936e4238: Verifying Checksum
2024-01-11T19:40:03.7424594Z a10e936e4238: Download complete
2024-01-11T19:40:03.7613915Z c9b1b535fdd9: Verifying Checksum
2024-01-11T19:40:03.7614425Z c9b1b535fdd9: Download complete
2024-01-11T19:40:03.9018170Z 3cd78ecb91b7: Verifying Checksum
2024-01-11T19:40:03.9023704Z 3cd78ecb91b7: Download complete
2024-01-11T19:40:03.9285711Z 93beeb46ba19: Verifying Checksum
2024-01-11T19:40:03.9286248Z 93beeb46ba19: Download complete
2024-01-11T19:40:03.9643404Z c9b1b535fdd9: Pull complete
2024-01-11T19:40:04.0390334Z fae0d5848d18: Verifying Checksum
2024-01-11T19:40:04.0390928Z fae0d5848d18: Download complete
2024-01-11T19:40:04.0839877Z a772ef259cc5: Verifying Checksum
2024-01-11T19:40:04.0841067Z a772ef259cc5: Download complete
2024-01-11T19:40:04.1830355Z a10e936e4238: Pull complete
2024-01-11T19:40:04.3005788Z a81d8be8c51e: Verifying Checksum
2024-01-11T19:40:04.3006735Z a81d8be8c51e: Download complete
2024-01-11T19:40:05.6436992Z 3cd78ecb91b7: Pull complete
2024-01-11T19:40:06.6007052Z a81d8be8c51e: Pull complete
2024-01-11T19:40:06.6128837Z 93beeb46ba19: Pull complete
2024-01-11T19:40:06.6245132Z fae0d5848d18: Pull complete
2024-01-11T19:40:06.6348157Z a772ef259cc5: Pull complete
2024-01-11T19:40:06.6382652Z Digest: sha256:1cf8a16e88c0670f75775a27999d4644d5506473d8ef3b3aa305fc95a95d34a8
2024-01-11T19:40:06.6396380Z Status: Downloaded newer image for ghcr.io/rtcamp/action-slack-notify:v2.2.0
2024-01-11T19:40:06.6407286Z ghcr.io/rtcamp/action-slack-notify:v2.2.0
2024-01-11T19:40:06.6423021Z ##[endgroup]
2024-01-11T19:40:06.6852313Z ##[group]Run google-github-actions/release-please-action@v4
2024-01-11T19:40:06.6852884Z with:
2024-01-11T19:40:06.6853174Z   release-type: node
2024-01-11T19:40:06.6853744Z   token: ***
2024-01-11T19:40:06.6854099Z   repo-url: [redacted]
2024-01-11T19:40:06.6854609Z   github-api-url: https://api.github.com
2024-01-11T19:40:06.6855151Z   github-graphql-url: https://api.github.com/graphql
2024-01-11T19:40:06.6855646Z   fork: false
2024-01-11T19:40:06.6855955Z   include-component-in-tag: false
2024-01-11T19:40:06.6856373Z   skip-github-release: false
2024-01-11T19:40:06.6856772Z   skip-github-pull-request: false
2024-01-11T19:40:06.6857161Z ##[endgroup]
2024-01-11T19:40:07.0904069Z Running release-please version: 16.5.0
2024-01-11T19:40:07.3574795Z ❯ Fetching package.json from branch main
2024-01-11T19:40:07.5835706Z ✔ Looking for latest release on branch: main with prefix: [redacted]
2024-01-11T19:40:07.5836734Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-01-11T19:40:08.9571516Z ❯ Found latest release pull request: 57 version: 0.1.36
2024-01-11T19:40:08.9577523Z ❯ Fetching releases with cursor undefined
2024-01-11T19:40:09.3720757Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3721763Z   major: 0,
2024-01-11T19:40:09.3722582Z   minor: 1,
2024-01-11T19:40:09.3722927Z   patch: 36,
2024-01-11T19:40:09.3723242Z   preRelease: undefined,
2024-01-11T19:40:09.3723604Z   build: undefined
2024-01-11T19:40:09.3723887Z }
2024-01-11T19:40:09.3724470Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3724968Z   major: 0,
2024-01-11T19:40:09.3725234Z   minor: 1,
2024-01-11T19:40:09.3725493Z   patch: 35,
2024-01-11T19:40:09.3725825Z   preRelease: undefined,
2024-01-11T19:40:09.3726158Z   build: undefined
2024-01-11T19:40:09.3726440Z }
2024-01-11T19:40:09.3726878Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3732676Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3733172Z   major: 0,
2024-01-11T19:40:09.3733449Z   minor: 1,
2024-01-11T19:40:09.3733713Z   patch: 34,
2024-01-11T19:40:09.3734004Z   preRelease: undefined,
2024-01-11T19:40:09.3734332Z   build: undefined
2024-01-11T19:40:09.3734611Z }
2024-01-11T19:40:09.3736619Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3741023Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3741512Z   major: 0,
2024-01-11T19:40:09.3741779Z   minor: 1,
2024-01-11T19:40:09.3742043Z   patch: 33,
2024-01-11T19:40:09.3742338Z   preRelease: undefined,
2024-01-11T19:40:09.3742666Z   build: undefined
2024-01-11T19:40:09.3742948Z }
2024-01-11T19:40:09.3744723Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3749652Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3750188Z   major: 0,
2024-01-11T19:40:09.3750625Z   minor: 1,
2024-01-11T19:40:09.3750884Z   patch: 32,
2024-01-11T19:40:09.3751192Z   preRelease: undefined,
2024-01-11T19:40:09.3751534Z   build: undefined
2024-01-11T19:40:09.3751811Z }
2024-01-11T19:40:09.3753500Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3757546Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3758056Z   major: 0,
2024-01-11T19:40:09.3758317Z   minor: 1,
2024-01-11T19:40:09.3758579Z   patch: 31,
2024-01-11T19:40:09.3758878Z   preRelease: undefined,
2024-01-11T19:40:09.3759213Z   build: undefined
2024-01-11T19:40:09.3759483Z }
2024-01-11T19:40:09.3761233Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3767923Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3768772Z   major: 0,
2024-01-11T19:40:09.3769024Z   minor: 1,
2024-01-11T19:40:09.3769295Z   patch: 30,
2024-01-11T19:40:09.3769629Z   preRelease: undefined,
2024-01-11T19:40:09.3769961Z   build: undefined
2024-01-11T19:40:09.3770233Z }
2024-01-11T19:40:09.3773429Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3780864Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3781377Z   major: 0,
2024-01-11T19:40:09.3781640Z   minor: 1,
2024-01-11T19:40:09.3781897Z   patch: 29,
2024-01-11T19:40:09.3782192Z   preRelease: undefined,
2024-01-11T19:40:09.3782527Z   build: undefined
2024-01-11T19:40:09.3782795Z }
2024-01-11T19:40:09.3784964Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3791676Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3792172Z   major: 0,
2024-01-11T19:40:09.3792430Z   minor: 1,
2024-01-11T19:40:09.3792682Z   patch: 28,
2024-01-11T19:40:09.3792993Z   preRelease: undefined,
2024-01-11T19:40:09.3793339Z   build: undefined
2024-01-11T19:40:09.3793608Z }
2024-01-11T19:40:09.3795720Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3803761Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3804283Z   major: 0,
2024-01-11T19:40:09.3804567Z   minor: 1,
2024-01-11T19:40:09.3804827Z   patch: 27,
2024-01-11T19:40:09.3805135Z   preRelease: undefined,
2024-01-11T19:40:09.3805478Z   build: undefined
2024-01-11T19:40:09.3805756Z }
2024-01-11T19:40:09.3845346Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3866579Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3867297Z   major: 0,
2024-01-11T19:40:09.3867710Z   minor: 1,
2024-01-11T19:40:09.3868304Z   patch: 26,
2024-01-11T19:40:09.3868679Z   preRelease: undefined,
2024-01-11T19:40:09.3869041Z   build: undefined
2024-01-11T19:40:09.3869331Z }
2024-01-11T19:40:09.3869875Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3870627Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3871120Z   major: 0,
2024-01-11T19:40:09.3871385Z   minor: 1,
2024-01-11T19:40:09.3871649Z   patch: 25,
2024-01-11T19:40:09.3871946Z   preRelease: undefined,
2024-01-11T19:40:09.3872343Z   build: undefined
2024-01-11T19:40:09.3872636Z }
2024-01-11T19:40:09.3873069Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3873742Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3874227Z   major: 0,
2024-01-11T19:40:09.3874495Z   minor: 1,
2024-01-11T19:40:09.3874747Z   patch: 24,
2024-01-11T19:40:09.3875037Z   preRelease: undefined,
2024-01-11T19:40:09.3875368Z   build: undefined
2024-01-11T19:40:09.3875651Z }
2024-01-11T19:40:09.3876056Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3876717Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3877195Z   major: 0,
2024-01-11T19:40:09.3877455Z   minor: 1,
2024-01-11T19:40:09.3877713Z   patch: 23,
2024-01-11T19:40:09.3878003Z   preRelease: undefined,
2024-01-11T19:40:09.3878342Z   build: undefined
2024-01-11T19:40:09.3878620Z }
2024-01-11T19:40:09.3879029Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3879696Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3880173Z   major: 0,
2024-01-11T19:40:09.3880426Z   minor: 1,
2024-01-11T19:40:09.3880675Z   patch: 22,
2024-01-11T19:40:09.3880959Z   preRelease: undefined,
2024-01-11T19:40:09.3881453Z   build: undefined
2024-01-11T19:40:09.3881730Z }
2024-01-11T19:40:09.3882148Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3882812Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3883287Z   major: 0,
2024-01-11T19:40:09.3883536Z   minor: 1,
2024-01-11T19:40:09.3883796Z   patch: 21,
2024-01-11T19:40:09.3884089Z   preRelease: undefined,
2024-01-11T19:40:09.3884423Z   build: undefined
2024-01-11T19:40:09.3884699Z }
2024-01-11T19:40:09.3885404Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3886055Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3886530Z   major: 0,
2024-01-11T19:40:09.3886780Z   minor: 1,
2024-01-11T19:40:09.3887041Z   patch: 20,
2024-01-11T19:40:09.3887451Z   preRelease: undefined,
2024-01-11T19:40:09.3887784Z   build: undefined
2024-01-11T19:40:09.3888054Z }
2024-01-11T19:40:09.3888469Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3889125Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3889587Z   major: 0,
2024-01-11T19:40:09.3889846Z   minor: 1,
2024-01-11T19:40:09.3890101Z   patch: 19,
2024-01-11T19:40:09.3890386Z   preRelease: undefined,
2024-01-11T19:40:09.3890708Z   build: undefined
2024-01-11T19:40:09.3890986Z }
2024-01-11T19:40:09.3891397Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3892047Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3892520Z   major: 0,
2024-01-11T19:40:09.3892779Z   minor: 1,
2024-01-11T19:40:09.3893040Z   patch: 18,
2024-01-11T19:40:09.3893329Z   preRelease: undefined,
2024-01-11T19:40:09.3893651Z   build: undefined
2024-01-11T19:40:09.3893931Z }
2024-01-11T19:40:09.3894350Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3894997Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3895462Z   major: 0,
2024-01-11T19:40:09.3895715Z   minor: 1,
2024-01-11T19:40:09.3895972Z   patch: 17,
2024-01-11T19:40:09.3896253Z   preRelease: undefined,
2024-01-11T19:40:09.3896581Z   build: undefined
2024-01-11T19:40:09.3896864Z }
2024-01-11T19:40:09.3897273Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3897913Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3898387Z   major: 0,
2024-01-11T19:40:09.3898644Z   minor: 1,
2024-01-11T19:40:09.3898899Z   patch: 16,
2024-01-11T19:40:09.3899174Z   preRelease: undefined,
2024-01-11T19:40:09.3899509Z   build: undefined
2024-01-11T19:40:09.3899787Z }
2024-01-11T19:40:09.3900196Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3900836Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3901307Z   major: 0,
2024-01-11T19:40:09.3901571Z   minor: 1,
2024-01-11T19:40:09.3901826Z   patch: 15,
2024-01-11T19:40:09.3902099Z   preRelease: undefined,
2024-01-11T19:40:09.3902431Z   build: undefined
2024-01-11T19:40:09.3902709Z }
2024-01-11T19:40:09.3903116Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3903748Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3904222Z   major: 0,
2024-01-11T19:40:09.3904485Z   minor: 1,
2024-01-11T19:40:09.3904733Z   patch: 14,
2024-01-11T19:40:09.3905018Z   preRelease: undefined,
2024-01-11T19:40:09.3905344Z   build: undefined
2024-01-11T19:40:09.3905625Z }
2024-01-11T19:40:09.3906027Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3906704Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3907173Z   major: 0,
2024-01-11T19:40:09.3907424Z   minor: 1,
2024-01-11T19:40:09.3907677Z   patch: 13,
2024-01-11T19:40:09.3907964Z   preRelease: undefined,
2024-01-11T19:40:09.3908298Z   build: undefined
2024-01-11T19:40:09.3908576Z }
2024-01-11T19:40:09.3908985Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3909637Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.3910105Z   major: 0,
2024-01-11T19:40:09.3910366Z   minor: 1,
2024-01-11T19:40:09.3910617Z   patch: 12,
2024-01-11T19:40:09.3910905Z   preRelease: undefined,
2024-01-11T19:40:09.3911234Z   build: undefined
2024-01-11T19:40:09.3911511Z }
2024-01-11T19:40:09.3911924Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.3912858Z ❯ Fetching releases with cursor Y3Vyc29yOnYyOpK0MjAyMy0wOC0yOVQxOTo1NDoyMlrOByndcQ==
2024-01-11T19:40:09.6985676Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.6986817Z   major: 0,
2024-01-11T19:40:09.6987780Z   minor: 1,
2024-01-11T19:40:09.6988205Z   patch: 11,
2024-01-11T19:40:09.6989029Z   preRelease: undefined,
2024-01-11T19:40:09.6989515Z   build: undefined
2024-01-11T19:40:09.6990697Z }
2024-01-11T19:40:09.6991341Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.6992035Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.6992532Z   major: 0,
2024-01-11T19:40:09.6992789Z   minor: 1,
2024-01-11T19:40:09.6993051Z   patch: 10,
2024-01-11T19:40:09.6993341Z   preRelease: undefined,
2024-01-11T19:40:09.6993687Z   build: undefined
2024-01-11T19:40:09.6993966Z }
2024-01-11T19:40:09.6994400Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.6995067Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.6995548Z   major: 0,
2024-01-11T19:40:09.6995801Z   minor: 1,
2024-01-11T19:40:09.6996056Z   patch: 9,
2024-01-11T19:40:09.6996345Z   preRelease: undefined,
2024-01-11T19:40:09.6996670Z   build: undefined
2024-01-11T19:40:09.6996951Z }
2024-01-11T19:40:09.6997367Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.6998019Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.6998492Z   major: 0,
2024-01-11T19:40:09.6998747Z   minor: 1,
2024-01-11T19:40:09.6999008Z   patch: 8,
2024-01-11T19:40:09.6999283Z   preRelease: undefined,
2024-01-11T19:40:09.6999604Z   build: undefined
2024-01-11T19:40:09.6999881Z }
2024-01-11T19:40:09.7000289Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7000938Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7001553Z   major: 0,
2024-01-11T19:40:09.7001815Z   minor: 1,
2024-01-11T19:40:09.7002075Z   patch: 7,
2024-01-11T19:40:09.7002352Z   preRelease: undefined,
2024-01-11T19:40:09.7002681Z   build: undefined
2024-01-11T19:40:09.7002960Z }
2024-01-11T19:40:09.7003378Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7004034Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7004514Z   major: 0,
2024-01-11T19:40:09.7004772Z   minor: 1,
2024-01-11T19:40:09.7005028Z   patch: 6,
2024-01-11T19:40:09.7005295Z   preRelease: undefined,
2024-01-11T19:40:09.7005633Z   build: undefined
2024-01-11T19:40:09.7005910Z }
2024-01-11T19:40:09.7006316Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7006956Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7007425Z   major: 0,
2024-01-11T19:40:09.7007680Z   minor: 1,
2024-01-11T19:40:09.7007931Z   patch: 5,
2024-01-11T19:40:09.7008197Z   preRelease: undefined,
2024-01-11T19:40:09.7008524Z   build: undefined
2024-01-11T19:40:09.7008803Z }
2024-01-11T19:40:09.7009415Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7015015Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7015680Z   major: 0,
2024-01-11T19:40:09.7016377Z   minor: 1,
2024-01-11T19:40:09.7016944Z   patch: 4,
2024-01-11T19:40:09.7017478Z   preRelease: undefined,
2024-01-11T19:40:09.7017910Z   build: undefined
2024-01-11T19:40:09.7042571Z }
2024-01-11T19:40:09.7043211Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7043961Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7044464Z   major: 0,
2024-01-11T19:40:09.7044734Z   minor: 1,
2024-01-11T19:40:09.7044998Z   patch: 3,
2024-01-11T19:40:09.7045280Z   preRelease: undefined,
2024-01-11T19:40:09.7045616Z   build: undefined
2024-01-11T19:40:09.7045900Z }
2024-01-11T19:40:09.7046334Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7047010Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7047489Z   major: 0,
2024-01-11T19:40:09.7047745Z   minor: 1,
2024-01-11T19:40:09.7048002Z   patch: 2,
2024-01-11T19:40:09.7048275Z   preRelease: undefined,
2024-01-11T19:40:09.7048599Z   build: undefined
2024-01-11T19:40:09.7049142Z }
2024-01-11T19:40:09.7049571Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7050227Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7050710Z   major: 0,
2024-01-11T19:40:09.7050982Z   minor: 1,
2024-01-11T19:40:09.7051390Z   patch: 1,
2024-01-11T19:40:09.7051661Z   preRelease: undefined,
2024-01-11T19:40:09.7051999Z   build: undefined
2024-01-11T19:40:09.7052276Z }
2024-01-11T19:40:09.7052697Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7053346Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7053820Z   major: 0,
2024-01-11T19:40:09.7054071Z   minor: 1,
2024-01-11T19:40:09.7054324Z   patch: 0,
2024-01-11T19:40:09.7054595Z   preRelease: undefined,
2024-01-11T19:40:09.7054923Z   build: undefined
2024-01-11T19:40:09.7055201Z }
2024-01-11T19:40:09.7055614Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7056246Z ❯ found release for [redacted] Version {
2024-01-11T19:40:09.7056732Z   major: 0,
2024-01-11T19:40:09.7057038Z   minor: 0,
2024-01-11T19:40:09.7057291Z   patch: 1,
2024-01-11T19:40:09.7057559Z   preRelease: undefined,
2024-01-11T19:40:09.7057886Z   build: undefined
2024-01-11T19:40:09.7058167Z }
2024-01-11T19:40:09.7058580Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:09.7059154Z ❯ found 2 possible releases. [
2024-01-11T19:40:09.7059542Z   Version {
2024-01-11T19:40:09.7059819Z     major: 0,
2024-01-11T19:40:09.7060081Z     minor: 1,
2024-01-11T19:40:09.7060349Z     patch: 36,
2024-01-11T19:40:09.7060643Z     preRelease: undefined,
2024-01-11T19:40:09.7060987Z     build: undefined
2024-01-11T19:40:09.7061272Z   },
2024-01-11T19:40:09.7061515Z   Version {
2024-01-11T19:40:09.7061773Z     major: 0,
2024-01-11T19:40:09.7062042Z     minor: 1,
2024-01-11T19:40:09.7062303Z     patch: 36,
2024-01-11T19:40:09.7062599Z     preRelease: undefined,
2024-01-11T19:40:09.7062934Z     build: undefined
2024-01-11T19:40:09.7063219Z   }
2024-01-11T19:40:09.7063454Z ]
2024-01-11T19:40:09.7064416Z ✔ Building releases
2024-01-11T19:40:09.7064789Z ✔ Building strategies by path
2024-01-11T19:40:09.7065177Z ❯ .: node
2024-01-11T19:40:11.2556014Z ❯ Fetching package.json from branch main
2024-01-11T19:40:11.2556870Z ✔ Looking for latest release on branch: main with prefix: [redacted]
2024-01-11T19:40:11.2557748Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-01-11T19:40:12.1328362Z ❯ Found latest release pull request: 57 version: 0.1.36
2024-01-11T19:40:12.1329023Z ❯ Fetching releases with cursor undefined
2024-01-11T19:40:12.4308156Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4308712Z   major: 0,
2024-01-11T19:40:12.4308987Z   minor: 1,
2024-01-11T19:40:12.4309254Z   patch: 36,
2024-01-11T19:40:12.4309548Z   preRelease: undefined,
2024-01-11T19:40:12.4309897Z   build: undefined
2024-01-11T19:40:12.4310190Z }
2024-01-11T19:40:12.4312689Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4313461Z   major: 0,
2024-01-11T19:40:12.4313901Z   minor: 1,
2024-01-11T19:40:12.4314522Z   patch: 35,
2024-01-11T19:40:12.4314978Z   preRelease: undefined,
2024-01-11T19:40:12.4315482Z   build: undefined
2024-01-11T19:40:12.4315881Z }
2024-01-11T19:40:12.4316655Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4317465Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4318112Z   major: 0,
2024-01-11T19:40:12.4318703Z   minor: 1,
2024-01-11T19:40:12.4318983Z   patch: 34,
2024-01-11T19:40:12.4319279Z   preRelease: undefined,
2024-01-11T19:40:12.4319619Z   build: undefined
2024-01-11T19:40:12.4319905Z }
2024-01-11T19:40:12.4320403Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4321090Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4321713Z   major: 0,
2024-01-11T19:40:12.4321978Z   minor: 1,
2024-01-11T19:40:12.4322230Z   patch: 33,
2024-01-11T19:40:12.4322916Z   preRelease: undefined,
2024-01-11T19:40:12.4323253Z   build: undefined
2024-01-11T19:40:12.4323526Z }
2024-01-11T19:40:12.4323968Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4324776Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4325262Z   major: 0,
2024-01-11T19:40:12.4325513Z   minor: 1,
2024-01-11T19:40:12.4325769Z   patch: 32,
2024-01-11T19:40:12.4326065Z   preRelease: undefined,
2024-01-11T19:40:12.4326406Z   build: undefined
2024-01-11T19:40:12.4326677Z }
2024-01-11T19:40:12.4327092Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4327750Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4328224Z   major: 0,
2024-01-11T19:40:12.4328472Z   minor: 1,
2024-01-11T19:40:12.4328726Z   patch: 31,
2024-01-11T19:40:12.4329021Z   preRelease: undefined,
2024-01-11T19:40:12.4329350Z   build: undefined
2024-01-11T19:40:12.4329621Z }
2024-01-11T19:40:12.4330036Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4330704Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4331167Z   major: 0,
2024-01-11T19:40:12.4331419Z   minor: 1,
2024-01-11T19:40:12.4331673Z   patch: 30,
2024-01-11T19:40:12.4331974Z   preRelease: undefined,
2024-01-11T19:40:12.4332294Z   build: undefined
2024-01-11T19:40:12.4332574Z }
2024-01-11T19:40:12.4332984Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4333633Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4334090Z   major: 0,
2024-01-11T19:40:12.4334355Z   minor: 1,
2024-01-11T19:40:12.4334608Z   patch: 29,
2024-01-11T19:40:12.4334899Z   preRelease: undefined,
2024-01-11T19:40:12.4335217Z   build: undefined
2024-01-11T19:40:12.4335494Z }
2024-01-11T19:40:12.4335906Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4336554Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4337017Z   major: 0,
2024-01-11T19:40:12.4337292Z   minor: 1,
2024-01-11T19:40:12.4337545Z   patch: 28,
2024-01-11T19:40:12.4337821Z   preRelease: undefined,
2024-01-11T19:40:12.4338149Z   build: undefined
2024-01-11T19:40:12.4338424Z }
2024-01-11T19:40:12.4338854Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4339551Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4340026Z   major: 0,
2024-01-11T19:40:12.4340280Z   minor: 1,
2024-01-11T19:40:12.4340536Z   patch: 27,
2024-01-11T19:40:12.4340822Z   preRelease: undefined,
2024-01-11T19:40:12.4341145Z   build: undefined
2024-01-11T19:40:12.4341424Z }
2024-01-11T19:40:12.4341834Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4342488Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4342957Z   major: 0,
2024-01-11T19:40:12.4343213Z   minor: 1,
2024-01-11T19:40:12.4343478Z   patch: 26,
2024-01-11T19:40:12.4343758Z   preRelease: undefined,
2024-01-11T19:40:12.4344086Z   build: undefined
2024-01-11T19:40:12.4344357Z }
2024-01-11T19:40:12.4344770Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4345417Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4345884Z   major: 0,
2024-01-11T19:40:12.4346150Z   minor: 1,
2024-01-11T19:40:12.4346416Z   patch: 25,
2024-01-11T19:40:12.4346698Z   preRelease: undefined,
2024-01-11T19:40:12.4347032Z   build: undefined
2024-01-11T19:40:12.4347314Z }
2024-01-11T19:40:12.4347723Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4348375Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4348856Z   major: 0,
2024-01-11T19:40:12.4349115Z   minor: 1,
2024-01-11T19:40:12.4349372Z   patch: 24,
2024-01-11T19:40:12.4349654Z   preRelease: undefined,
2024-01-11T19:40:12.4349983Z   build: undefined
2024-01-11T19:40:12.4350259Z }
2024-01-11T19:40:12.4350673Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4351462Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4351942Z   major: 0,
2024-01-11T19:40:12.4352212Z   minor: 1,
2024-01-11T19:40:12.4352470Z   patch: 23,
2024-01-11T19:40:12.4352746Z   preRelease: undefined,
2024-01-11T19:40:12.4353077Z   build: undefined
2024-01-11T19:40:12.4353467Z }
2024-01-11T19:40:12.4353880Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4354524Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4354996Z   major: 0,
2024-01-11T19:40:12.4355252Z   minor: 1,
2024-01-11T19:40:12.4355501Z   patch: 22,
2024-01-11T19:40:12.4355792Z   preRelease: undefined,
2024-01-11T19:40:12.4356125Z   build: undefined
2024-01-11T19:40:12.4356409Z }
2024-01-11T19:40:12.4356809Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4357459Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4357935Z   major: 0,
2024-01-11T19:40:12.4358193Z   minor: 1,
2024-01-11T19:40:12.4358456Z   patch: 21,
2024-01-11T19:40:12.4358744Z   preRelease: undefined,
2024-01-11T19:40:12.4359070Z   build: undefined
2024-01-11T19:40:12.4359345Z }
2024-01-11T19:40:12.4359753Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4360414Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4360881Z   major: 0,
2024-01-11T19:40:12.4361934Z   minor: 1,
2024-01-11T19:40:12.4362333Z   patch: 20,
2024-01-11T19:40:12.4362842Z   preRelease: undefined,
2024-01-11T19:40:12.4363325Z   build: undefined
2024-01-11T19:40:12.4363674Z }
2024-01-11T19:40:12.4364293Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4365070Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4365669Z   major: 0,
2024-01-11T19:40:12.4366052Z   minor: 1,
2024-01-11T19:40:12.4366433Z   patch: 19,
2024-01-11T19:40:12.4366853Z   preRelease: undefined,
2024-01-11T19:40:12.4367350Z   build: undefined
2024-01-11T19:40:12.4367701Z }
2024-01-11T19:40:12.4368263Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4369096Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4369722Z   major: 0,
2024-01-11T19:40:12.4370053Z   minor: 1,
2024-01-11T19:40:12.4370477Z   patch: 18,
2024-01-11T19:40:12.4370904Z   preRelease: undefined,
2024-01-11T19:40:12.4371350Z   build: undefined
2024-01-11T19:40:12.4371751Z }
2024-01-11T19:40:12.4372302Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4373068Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4373671Z   major: 0,
2024-01-11T19:40:12.4374056Z   minor: 1,
2024-01-11T19:40:12.4374431Z   patch: 17,
2024-01-11T19:40:12.4374911Z   preRelease: undefined,
2024-01-11T19:40:12.4375312Z   build: undefined
2024-01-11T19:40:12.4375705Z }
2024-01-11T19:40:12.4376308Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4377103Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4377760Z   major: 0,
2024-01-11T19:40:12.4378099Z   minor: 1,
2024-01-11T19:40:12.4378468Z   patch: 16,
2024-01-11T19:40:12.4378927Z   preRelease: undefined,
2024-01-11T19:40:12.4379338Z   build: undefined
2024-01-11T19:40:12.4379729Z }
2024-01-11T19:40:12.4380360Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4381149Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4381698Z   major: 0,
2024-01-11T19:40:12.4382166Z   minor: 1,
2024-01-11T19:40:12.4382538Z   patch: 15,
2024-01-11T19:40:12.4382939Z   preRelease: undefined,
2024-01-11T19:40:12.4383402Z   build: undefined
2024-01-11T19:40:12.4383810Z }
2024-01-11T19:40:12.4384339Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4385172Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4385723Z   major: 0,
2024-01-11T19:40:12.4386113Z   minor: 1,
2024-01-11T19:40:12.4386546Z   patch: 14,
2024-01-11T19:40:12.4386950Z   preRelease: undefined,
2024-01-11T19:40:12.4387545Z   build: undefined
2024-01-11T19:40:12.4387995Z }
2024-01-11T19:40:12.4388555Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4389329Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4389927Z   major: 0,
2024-01-11T19:40:12.4390410Z   minor: 1,
2024-01-11T19:40:12.4390785Z   patch: 13,
2024-01-11T19:40:12.4391197Z   preRelease: undefined,
2024-01-11T19:40:12.4391660Z   build: undefined
2024-01-11T19:40:12.4392068Z }
2024-01-11T19:40:12.4392667Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4393392Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.4393982Z   major: 0,
2024-01-11T19:40:12.4394416Z   minor: 1,
2024-01-11T19:40:12.4394787Z   patch: 12,
2024-01-11T19:40:12.4395145Z   preRelease: undefined,
2024-01-11T19:40:12.4395657Z   build: undefined
2024-01-11T19:40:12.4396046Z }
2024-01-11T19:40:12.4396648Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.4397662Z ❯ Fetching releases with cursor Y3Vyc29yOnYyOpK0MjAyMy0wOC0yOVQxOTo1NDoyMlrOByndcQ==
2024-01-11T19:40:12.6935977Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6941269Z   major: 0,
2024-01-11T19:40:12.6941677Z   minor: 1,
2024-01-11T19:40:12.6942168Z   patch: 11,
2024-01-11T19:40:12.6942548Z   preRelease: undefined,
2024-01-11T19:40:12.6943022Z   build: undefined
2024-01-11T19:40:12.6943470Z }
2024-01-11T19:40:12.6944069Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6944827Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6945514Z   major: 0,
2024-01-11T19:40:12.6945903Z   minor: 1,
2024-01-11T19:40:12.6946282Z   patch: 10,
2024-01-11T19:40:12.6946694Z   preRelease: undefined,
2024-01-11T19:40:12.6947160Z   build: undefined
2024-01-11T19:40:12.6947565Z }
2024-01-11T19:40:12.6948158Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6948908Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6949527Z   major: 0,
2024-01-11T19:40:12.6949988Z   minor: 1,
2024-01-11T19:40:12.6950361Z   patch: 9,
2024-01-11T19:40:12.6950712Z   preRelease: undefined,
2024-01-11T19:40:12.6951249Z   build: undefined
2024-01-11T19:40:12.6951643Z }
2024-01-11T19:40:12.6952150Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6952992Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6953578Z   major: 0,
2024-01-11T19:40:12.6954003Z   minor: 1,
2024-01-11T19:40:12.6954342Z   patch: 8,
2024-01-11T19:40:12.6954731Z   preRelease: undefined,
2024-01-11T19:40:12.6955232Z   build: undefined
2024-01-11T19:40:12.6955624Z }
2024-01-11T19:40:12.6956120Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6956972Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6957557Z   major: 0,
2024-01-11T19:40:12.6957925Z   minor: 1,
2024-01-11T19:40:12.6958311Z   patch: 7,
2024-01-11T19:40:12.6958711Z   preRelease: undefined,
2024-01-11T19:40:12.6959161Z   build: undefined
2024-01-11T19:40:12.6959623Z }
2024-01-11T19:40:12.6960108Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6960927Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6961791Z   major: 0,
2024-01-11T19:40:12.6962164Z   minor: 1,
2024-01-11T19:40:12.6962549Z   patch: 6,
2024-01-11T19:40:12.6962965Z   preRelease: undefined,
2024-01-11T19:40:12.6963410Z   build: undefined
2024-01-11T19:40:12.6963813Z }
2024-01-11T19:40:12.6964356Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6965133Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6965740Z   major: 0,
2024-01-11T19:40:12.6966156Z   minor: 1,
2024-01-11T19:40:12.6966498Z   patch: 5,
2024-01-11T19:40:12.6966893Z   preRelease: undefined,
2024-01-11T19:40:12.6967385Z   build: undefined
2024-01-11T19:40:12.6967787Z }
2024-01-11T19:40:12.6968289Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6969432Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6970022Z   major: 0,
2024-01-11T19:40:12.6970445Z   minor: 1,
2024-01-11T19:40:12.6970783Z   patch: 4,
2024-01-11T19:40:12.6971173Z   preRelease: undefined,
2024-01-11T19:40:12.6971806Z   build: undefined
2024-01-11T19:40:12.6972203Z }
2024-01-11T19:40:12.6972698Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6973528Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6974109Z   major: 0,
2024-01-11T19:40:12.6974452Z   minor: 1,
2024-01-11T19:40:12.6974892Z   patch: 3,
2024-01-11T19:40:12.6975281Z   preRelease: undefined,
2024-01-11T19:40:12.6975728Z   build: undefined
2024-01-11T19:40:12.6976127Z }
2024-01-11T19:40:12.6976666Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6977457Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6978097Z   major: 0,
2024-01-11T19:40:12.6978436Z   minor: 1,
2024-01-11T19:40:12.6978815Z   patch: 2,
2024-01-11T19:40:12.6979248Z   preRelease: undefined,
2024-01-11T19:40:12.6979707Z   build: undefined
2024-01-11T19:40:12.6980064Z }
2024-01-11T19:40:12.6980647Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6981431Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6982036Z   major: 0,
2024-01-11T19:40:12.6982407Z   minor: 1,
2024-01-11T19:40:12.6982791Z   patch: 1,
2024-01-11T19:40:12.6983184Z   preRelease: undefined,
2024-01-11T19:40:12.6983640Z   build: undefined
2024-01-11T19:40:12.6984042Z }
2024-01-11T19:40:12.6984572Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6985386Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6985960Z   major: 0,
2024-01-11T19:40:12.6986331Z   minor: 1,
2024-01-11T19:40:12.6986742Z   patch: 0,
2024-01-11T19:40:12.6987149Z   preRelease: undefined,
2024-01-11T19:40:12.6987548Z   build: undefined
2024-01-11T19:40:12.6988009Z }
2024-01-11T19:40:12.6988539Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.6989372Z ❯ found release for [redacted] Version {
2024-01-11T19:40:12.6989930Z   major: 0,
2024-01-11T19:40:12.6990298Z   minor: 0,
2024-01-11T19:40:12.6990738Z   patch: 1,
2024-01-11T19:40:12.6991155Z   preRelease: undefined,
2024-01-11T19:40:12.6991562Z   build: undefined
2024-01-11T19:40:12.7026744Z }
2024-01-11T19:40:12.7027530Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-11T19:40:12.7028156Z ❯ found 2 possible releases. [
2024-01-11T19:40:12.7028535Z   Version {
2024-01-11T19:40:12.7028814Z     major: 0,
2024-01-11T19:40:12.7029094Z     minor: 1,
2024-01-11T19:40:12.7029362Z     patch: 36,
2024-01-11T19:40:12.7029672Z     preRelease: undefined,
2024-01-11T19:40:12.7030022Z     build: undefined
2024-01-11T19:40:12.7030320Z   },
2024-01-11T19:40:12.7030557Z   Version {
2024-01-11T19:40:12.7030827Z     major: 0,
2024-01-11T19:40:12.7031117Z     minor: 1,
2024-01-11T19:40:12.7031382Z     patch: 36,
2024-01-11T19:40:12.7031671Z     preRelease: undefined,
2024-01-11T19:40:12.7032013Z     build: undefined
2024-01-11T19:40:12.7032306Z   }
2024-01-11T19:40:12.7032534Z ]
2024-01-11T19:40:12.7033226Z ✔ Building pull requests
2024-01-11T19:40:12.7033639Z ✔ Building strategies by path
2024-01-11T19:40:12.7034024Z ❯ .: node
2024-01-11T19:40:12.7034363Z ✔ Collecting release commit SHAs
2024-01-11T19:40:12.7034803Z ❯ release search depth: 400
2024-01-11T19:40:12.7035247Z ❯ Fetching releases with cursor undefined
2024-01-11T19:40:12.9739033Z ❯ Found release for path ., v0.1.36
2024-01-11T19:40:12.9739867Z ❯ release for path: ., version: 0.1.36, sha: 17a7039599c8acc48318d3a9bef3be239a6c4a38
2024-01-11T19:40:12.9740664Z ✔ Collecting commits since all latest releases
2024-01-11T19:40:12.9741179Z ❯ commit search depth: 500
2024-01-11T19:40:12.9742317Z ❯ Set(1) { '17a7039599c8acc48318d3a9bef3be239a6c4a38' }
2024-01-11T19:40:12.9743044Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-01-11T19:40:14.8747652Z ❯ Backfilling file list for commit: bf6350966f6b5a1531a969abcbe8c9a34fd5999e
2024-01-11T19:40:14.9895006Z ❯ Found 2 files
2024-01-11T19:40:14.9895762Z ❯ Backfilling file list for commit: 988fd74b8101dfdbb50456d90e35de25c8beeb57
2024-01-11T19:40:15.1387965Z ❯ Found 1 files
2024-01-11T19:40:15.1389063Z ❯ Backfilling file list for commit: 98a00cf562c09049155d3e7d0d7a06d8100e88d7
2024-01-11T19:40:15.2795245Z ❯ Found 1 files
2024-01-11T19:40:15.2795956Z ❯ Backfilling file list for commit: f37a4e2721ab7d353ee840add9fd2fd9a8700e17
2024-01-11T19:40:15.4018208Z ❯ Found 1 files
2024-01-11T19:40:15.4018912Z ❯ Backfilling file list for commit: bd0942c801246469ada56d1d0b7396fbb1e72d86
2024-01-11T19:40:15.5281818Z ❯ Found 1 files
2024-01-11T19:40:15.5282825Z ❯ Backfilling file list for commit: 4fad0e16f1c25e31be8ac2130207124d931942b0
2024-01-11T19:40:15.6675463Z ❯ Found 1 files
2024-01-11T19:40:15.6676458Z ❯ Backfilling file list for commit: da0a14a6f91b5c44f54d37659fdf1e650007426b
2024-01-11T19:40:15.7905492Z ❯ Found 1 files
2024-01-11T19:40:15.7906499Z ❯ Backfilling file list for commit: 285c328efcaf085016bd14b07754840392d60c04
2024-01-11T19:40:15.9139921Z ❯ Found 2 files
2024-01-11T19:40:15.9140920Z ❯ Backfilling file list for commit: d91b1e7078c963424e427eb6003c40b52223dfd9
2024-01-11T19:40:16.0514221Z ❯ Found 3 files
2024-01-11T19:40:16.0514992Z ❯ Backfilling file list for commit: 22340747fea9ee4a3a08881cfd39378226d8a5a6
2024-01-11T19:40:16.1987459Z ❯ Found 1 files
2024-01-11T19:40:16.1988533Z ❯ Backfilling file list for commit: 9fc487925fddce24a843b8dc8817a0e5dca41629
2024-01-11T19:40:16.3478152Z ❯ Found 2 files
2024-01-11T19:40:16.3478892Z ❯ Backfilling file list for commit: 3bb5a5f7e52d88996b88134c751088ea0c2a987c
2024-01-11T19:40:16.5064001Z ❯ Found 6 files
2024-01-11T19:40:16.5066131Z ❯ Backfilling file list for commit: cac52390de24995457b48e9aa983d2ee1ea78a07
2024-01-11T19:40:16.6211044Z ❯ Found 1 files
2024-01-11T19:40:16.6213214Z ❯ Backfilling file list for commit: 8fbc13a66362bbc53b5e6c4cb7a15d123f87f4c2
2024-01-11T19:40:16.7585594Z ❯ Found 1 files
2024-01-11T19:40:16.7586304Z ❯ Backfilling file list for commit: 715189b041d4c87544cf03ba4e4c414733a5c195
2024-01-11T19:40:16.8863655Z ❯ Found 1 files
2024-01-11T19:40:16.8864738Z ❯ Backfilling file list for commit: ecd8e690aef7648fcaf6947e42059f93c2011b32
2024-01-11T19:40:17.0207569Z ❯ Found 4 files
2024-01-11T19:40:17.0211210Z ✔ Splitting 2 commits by path
2024-01-11T19:40:17.0217066Z ✔ Building candidate release pull request for path: .
2024-01-11T19:40:17.0217888Z ❯ type: node
2024-01-11T19:40:17.0218720Z ❯ targetBranch: main
2024-01-11T19:40:17.0252739Z ❯ commits: 2
2024-01-11T19:40:17.0256696Z ✔ Considering: 2 commits
2024-01-11T19:40:17.0261103Z ❯ component: 
2024-01-11T19:40:17.0262837Z ❯ pull request title pattern: undefined
2024-01-11T19:40:17.0265382Z ❯ Fetching package.json from branch main
2024-01-11T19:40:17.0547451Z ✔ No user facing commits found since 17a7039599c8acc48318d3a9bef3be239a6c4a38 - skipping
2024-01-11T19:40:17.1262349Z Cleaning up orphan processes

Additional information

The commit message which should have triggered this release was:

deps([redacted]): Upgrade eslint (https://github.com/[redacted])
* deps([redacted]): Upgrade eslint

* deps([redacted]): Upgrade eslint-plugin-import

* deps([redacted]): Upgrade eslint-plugin-n

* deps([redacted]): Upgrade prettier-eslint

We were able to generate release PRs previously with similar commits.

sheuertz avatar Jan 11 '24 19:01 sheuertz