Skip to content
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

Wrong release version on a failed GitHub API call #577

Closed
gildo opened this issue Aug 22, 2022 · 4 comments
Closed

Wrong release version on a failed GitHub API call #577

gildo opened this issue Aug 22, 2022 · 4 comments
Assignees

Comments

@gildo
Copy link

gildo commented Aug 22, 2022

TL;DR

Release-please tried to bump one of our projects from 3.2.0 to 1.0.0. The action log shows a failed call to pullRequestsSince.
The action got the version wrong and included a series of already released commits in the pull request.

Re-running the action fixed the pull request however, I think that bumping to 1.0.0 is not an optimal fallback solution.

I've attached the log output with more details.

Thank you,
Gildo

Expected behavior

No response

Observed behavior

No response

Action YAML

name: Create a new release

on:
  push:
    branches:
      - master
      - main

jobs:
  release-please:
    runs-on: ubuntu-latest
    steps:
      - name: Release app
        uses: REDACTED/action-release-app@main
        with:
          github-token: ${{secrets.BUNDLE_GITHUB__COM}}
          gcloud-json-key: ${{secrets.GCLOUD_JSON_KEY}}

Log output

Run google-github-actions/release-please-action@v3
✔ Looking for latest release on branch: master with prefix: release-please-action
⚠ Did not receive a response for query: query pullRequestsSince($owner: String!, $repo: String!, $num: Int!, $maxFilesChanged: Int, $targetBranch: String!, $cursor: String) ***
      repository(owner: $owner, name: $repo) ***
        ref(qualifiedName: $targetBranch) ***
          target ***
            ... on Commit ***
              history(first: $num, after: $cursor) ***
                nodes ***
                  associatedPullRequests(first: 10) ***
                    nodes ***
                      number
                      title
                      baseRefName
                      headRefName
                      labels(first: 10) ***
                        nodes ***
                          name
                        ***
                      ***
                      body
                      mergeCommit ***
                        oid
                      ***
                      files(first: $maxFilesChanged) ***
                        nodes ***
                          path
                        ***
                        pageInfo ***
                          endCursor
                          hasNextPage
                        ***
                      ***
                    ***
                  ***
                  sha: oid
                  message
                ***
                pageInfo ***
                  hasNextPage
                  endCursor
                ***
              ***
            ***
          ***
        ***
      ***
    *** ***
  cursor: undefined,
  owner: 'REDACTED',
  repo: 'REDACTED',
  num: 25,
  targetBranch: 'master',
  maxFilesChanged: 100
***
✔ Building releases
✔ Building strategies by path

✔ Looking for latest release on branch: master with prefix: release-please-action
⚠ Did not receive a response for query: query pullRequestsSince($owner: String!, $repo: String!, $num: Int!, $maxFilesChanged: Int, $targetBranch: String!, $cursor: String) ***
      repository(owner: $owner, name: $repo) ***
        ref(qualifiedName: $targetBranch) ***
          target ***
            ... on Commit ***
              history(first: $num, after: $cursor) ***
                nodes ***
                  associatedPullRequests(first: 10) ***
                    nodes ***
                      number
                      title
                      baseRefName
                      headRefName
                      labels(first: 10) ***
                        nodes ***
                          name
                        ***
                      ***
                      body
                      mergeCommit ***
                        oid
                      ***
                      files(first: $maxFilesChanged) ***
                        nodes ***
                          path
                        ***
                        pageInfo ***
                          endCursor
                      mergeCommit ***
                        oid
                      ***
                      files(first: $maxFilesChanged) ***
                        nodes ***
                          path
                        ***
                        pageInfo ***
                          endCursor
                          hasNextPage
                        ***
                      ***
                    ***
                  ***
                  sha: oid
                  message
                ***
                pageInfo ***
                  hasNextPage
                  endCursor
                ***
              ***
            ***
          ***
        ***
      ***
    *** ***
  cursor: 'dca3dfc35f6670db955fca45bfa0b06315481953 49',
  owner: 'REDACTED',
  repo: 'REDACTED',
  num: 25,
  targetBranch: 'master',
  maxFilesChanged: 100
***
✔ Splitting 50 commits by path
⚠ No latest release pull request found.
✔ Building candidate release pull request for path: .
✔ Considering: 129 commits
✔ Looking for open release pull requests
✔ found 1 open release pull requests.
✔ Looking for snoozed release pull requests
✔ found 0 snoozed release pull requests.
⚠ file lib/release/please/action/version.rb did not exist
⚠ file .release-please-manifest.json did not exist
✔ Starting GitHub PR workflow...
✔ Successfully found branch HEAD sha "dca3dfc35f6670db955fca45bfa0b06315481953".
✔ Skipping branch creation step...
✔ Got the latest commit tree
✔ Successfully created a tree with the desired changes with SHA 228f9ad5e36d83f55607bccfe0aca5f99d77c7cc
✔ Successfully created commit. See commit at https://api.github.com/repos/REDACTED
✔ Updating reference heads/release-please--branches--master--components--release-please-action to 130154e55cba466b05c5c46418ac7bcbd4cdd90f
✔ Successfully updated reference release-please--branches--master--components--release-please-action to 130154e55cba466b05c5c46418ac7bcbd4cdd90f
✔ Found existing pull request for reference wise-emotions:release-please--branches--master--components--release-please-action. Skipping creating a new pull request.
✔ Successfully opened pull request: 242.

Additional information

No response

@chingor13
Copy link
Contributor

This sounds like the same issue for googleapis/release-please#1567 which is in 13.21.0 of the underlying release-please library. The cause is that GitHub graphql has been getting flakier and we were silently catching errors for fetching the list of recent commits (which means that release-please couldn't find the latest release). Retrying was the workaround.

I've been having issues releasing the next version of the action, but it should be resolved today.

@chingor13
Copy link
Contributor

This should be fixed now in 3.4.0

@gildo
Copy link
Author

gildo commented Aug 25, 2022

@chingor13 ❤️

@sam3k
Copy link

sam3k commented Oct 16, 2023

I am having a similar issue where my current version is 0.4.0 but release-please is creating a PR for version 0.2.0.

Logs:

2023-10-16T23:04:08.3251567Z Requested labels: ubuntu-latest
2023-10-16T23:04:08.3251798Z Job defined at: parce/tui/.github/workflows/release-please.yml@refs/heads/main
2023-10-16T23:04:08.3251924Z Waiting for a runner to pick up this job...
2023-10-16T23:04:08.5474351Z Job is waiting for a hosted runner to come online.
2023-10-16T23:04:12.4148273Z Job is about to start running on the hosted runner: GitHub Actions 1 (hosted)
2023-10-16T23:04:14.8302987Z ##[debug]Starting: release-please
2023-10-16T23:04:14.8342946Z ##[debug]Cleaning runner temp folder: /home/runner/work/_temp
2023-10-16T23:04:14.8687851Z ##[debug]Starting: Set up job
2023-10-16T23:04:14.8688923Z Current runner version: '2.310.2'
2023-10-16T23:04:14.8721340Z ##[group]Operating System
2023-10-16T23:04:14.8722147Z Ubuntu
2023-10-16T23:04:14.8722914Z 22.04.3
2023-10-16T23:04:14.8723409Z LTS
2023-10-16T23:04:14.8724059Z ##[endgroup]
2023-10-16T23:04:14.8724611Z ##[group]Runner Image
2023-10-16T23:04:14.8725266Z Image: ubuntu-22.04
2023-10-16T23:04:14.8726005Z Version: 20231001.1.0
2023-10-16T23:04:14.8727456Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20231001.1/images/linux/Ubuntu2204-Readme.md
2023-10-16T23:04:14.8729389Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20231001.1
2023-10-16T23:04:14.8730791Z ##[endgroup]
2023-10-16T23:04:14.8731449Z ##[group]Runner Image Provisioner
2023-10-16T23:04:14.8732165Z 2.0.310.1
2023-10-16T23:04:14.8733107Z ##[endgroup]
2023-10-16T23:04:14.8734574Z ##[group]GITHUB_TOKEN Permissions
2023-10-16T23:04:14.8737135Z Contents: write
2023-10-16T23:04:14.8737759Z Metadata: read
2023-10-16T23:04:14.8738554Z PullRequests: write
2023-10-16T23:04:14.8739214Z ##[endgroup]
2023-10-16T23:04:14.8743914Z Secret source: Actions
2023-10-16T23:04:14.8745021Z ##[debug]Primary repository: parce/tui
2023-10-16T23:04:14.8745999Z Prepare workflow directory
2023-10-16T23:04:14.8845566Z ##[debug]Creating pipeline directory: '/home/runner/work/tui'
2023-10-16T23:04:14.8850395Z ##[debug]Creating workspace directory: '/home/runner/work/tui/tui'
2023-10-16T23:04:14.8852619Z ##[debug]Update context data
2023-10-16T23:04:14.8858634Z ##[debug]Evaluating job-level environment variables
2023-10-16T23:04:14.9549420Z ##[debug]Evaluating job container
2023-10-16T23:04:14.9554229Z ##[debug]Evaluating job service containers
2023-10-16T23:04:14.9557746Z ##[debug]Evaluating job defaults
2023-10-16T23:04:14.9766463Z Prepare all required actions
2023-10-16T23:04:14.9991506Z Getting action download info
2023-10-16T23:04:15.2667513Z Download action repository 'google-github-actions/release-please-action@v3' (SHA:4c5670f886fe259db4d11222f7dff41c1382304d)
2023-10-16T23:04:15.9909488Z ##[debug]Download 'https://api.github.com/repos/google-github-actions/release-please-action/tarball/4c5670f886fe259db4d11222f7dff41c1382304d' to '/home/runner/work/_actions/_temp_bec4c7f5-68bb-4762-8722-36f3b1dbfbde/60fc7180-950c-406e-8efb-ceaec05fc6a0.tar.gz'
2023-10-16T23:04:16.1617824Z ##[debug]Unwrap 'google-github-actions-release-please-action-4c5670f' to '/home/runner/work/_actions/google-github-actions/release-please-action/v3'
2023-10-16T23:04:16.1741421Z ##[debug]Archive '/home/runner/work/_actions/_temp_bec4c7f5-68bb-4762-8722-36f3b1dbfbde/60fc7180-950c-406e-8efb-ceaec05fc6a0.tar.gz' has been unzipped into '/home/runner/work/_actions/google-github-actions/release-please-action/v3'.
2023-10-16T23:04:16.1986969Z ##[debug]action.yml for action: '/home/runner/work/_actions/google-github-actions/release-please-action/v3/action.yml'.
2023-10-16T23:04:16.3206223Z ##[debug]Set step '__google-github-actions_release-please-action' display name to: 'Run google-github-actions/release-please-action@v3'
2023-10-16T23:04:16.3208192Z Complete job name: release-please
2023-10-16T23:04:16.3217724Z ##[debug]Collect running processes for tracking orphan processes.
2023-10-16T23:04:16.3463682Z ##[debug]Finishing: Set up job
2023-10-16T23:04:16.3727312Z ##[debug]Evaluating condition for step: 'Run google-github-actions/release-please-action@v3'
2023-10-16T23:04:16.3791869Z ##[debug]Evaluating: success()
2023-10-16T23:04:16.3798865Z ##[debug]Evaluating success:
2023-10-16T23:04:16.3828963Z ##[debug]=> true
2023-10-16T23:04:16.3837468Z ##[debug]Result: true
2023-10-16T23:04:16.3886591Z ##[debug]Starting: Run google-github-actions/release-please-action@v3
2023-10-16T23:04:16.4190655Z ##[debug]Loading inputs
2023-10-16T23:04:16.4229837Z ##[debug]Evaluating: secrets.TUI_ACTIONS_SECRET
2023-10-16T23:04:16.4231788Z ##[debug]Evaluating Index:
2023-10-16T23:04:16.4234296Z ##[debug]..Evaluating secrets:
2023-10-16T23:04:16.4235775Z ##[debug]..=> Object
2023-10-16T23:04:16.4251371Z ##[debug]..Evaluating String:
2023-10-16T23:04:16.4252654Z ##[debug]..=> 'TUI_ACTIONS_SECRET'
2023-10-16T23:04:16.4258859Z ##[debug]=> '***'
2023-10-16T23:04:16.4261654Z ##[debug]Result: '***'
2023-10-16T23:04:16.4281290Z ##[debug]Evaluating: github.server_url
2023-10-16T23:04:16.4281956Z ##[debug]Evaluating Index:
2023-10-16T23:04:16.4282460Z ##[debug]..Evaluating github:
2023-10-16T23:04:16.4282976Z ##[debug]..=> Object
2023-10-16T23:04:16.4283428Z ##[debug]..Evaluating String:
2023-10-16T23:04:16.4283942Z ##[debug]..=> 'server_url'
2023-10-16T23:04:16.4284617Z ##[debug]=> 'https://github.com'
2023-10-16T23:04:16.4285223Z ##[debug]Result: 'https://github.com'
2023-10-16T23:04:16.4296464Z ##[debug]Evaluating: github.api_url
2023-10-16T23:04:16.4297051Z ##[debug]Evaluating Index:
2023-10-16T23:04:16.4297539Z ##[debug]..Evaluating github:
2023-10-16T23:04:16.4298062Z ##[debug]..=> Object
2023-10-16T23:04:16.4298500Z ##[debug]..Evaluating String:
2023-10-16T23:04:16.4298996Z ##[debug]..=> 'api_url'
2023-10-16T23:04:16.4299609Z ##[debug]=> 'https://api.github.com'
2023-10-16T23:04:16.4300250Z ##[debug]Result: 'https://api.github.com'
2023-10-16T23:04:16.4302807Z ##[debug]Evaluating: github.graphql_url
2023-10-16T23:04:16.4303418Z ##[debug]Evaluating Index:
2023-10-16T23:04:16.4303914Z ##[debug]..Evaluating github:
2023-10-16T23:04:16.4304416Z ##[debug]..=> Object
2023-10-16T23:04:16.4304849Z ##[debug]..Evaluating String:
2023-10-16T23:04:16.4305348Z ##[debug]..=> 'graphql_url'
2023-10-16T23:04:16.4305935Z ##[debug]=> 'https://api.github.com/graphql'
2023-10-16T23:04:16.4306667Z ##[debug]Result: 'https://api.github.com/graphql'
2023-10-16T23:04:16.4328221Z ##[debug]Loading env
2023-10-16T23:04:16.4456531Z ##[group]Run google-github-actions/release-please-action@v3
2023-10-16T23:04:16.4457277Z with:
2023-10-16T23:04:16.4457630Z   release-type: node
2023-10-16T23:04:16.4458815Z   token: ***
2023-10-16T23:04:16.4459210Z   fork: false
2023-10-16T23:04:16.4459736Z   clean: true
2023-10-16T23:04:16.4460215Z   bump-minor-pre-major: false
2023-10-16T23:04:16.4460937Z   bump-patch-for-minor-pre-major: false
2023-10-16T23:04:16.4461672Z   changelog-host: https://github.com
2023-10-16T23:04:16.4462779Z   github-api-url: https://api.github.com
2023-10-16T23:04:16.4463736Z   github-graphql-url: https://api.github.com/graphql
2023-10-16T23:04:16.4464575Z   monorepo-tags: false
2023-10-16T23:04:16.4465012Z ##[endgroup]
2023-10-16T23:04:17.3764386Z ❯ Fetching package.json from branch main
2023-10-16T23:04:17.9386083Z ✔ Looking for latest release on branch: main with prefix: tui
2023-10-16T23:04:17.9387140Z ❯ Fetching merge commits on branch main with cursor: undefined
2023-10-16T23:04:20.7827988Z ❯ Found latest release pull request: 212 version: 0.4.0
2023-10-16T23:04:20.7832125Z ❯ Fetching releases with cursor undefined
2023-10-16T23:04:21.2180436Z ❯ found release for tui Version {
2023-10-16T23:04:21.2183587Z   major: 0,
2023-10-16T23:04:21.2187044Z   minor: 3,
2023-10-16T23:04:21.2187946Z   patch: 0,
2023-10-16T23:04:21.2188770Z   preRelease: undefined,
2023-10-16T23:04:21.2189850Z   build: undefined
2023-10-16T23:04:21.2190795Z }
2023-10-16T23:04:21.2192137Z ❯ SHA not found in recent commits to branch main, skipping
2023-10-16T23:04:21.2193777Z ❯ found release for tui Version {
2023-10-16T23:04:21.2195136Z   major: 0,
2023-10-16T23:04:21.2196071Z   minor: 2,
2023-10-16T23:04:21.2196716Z   patch: 0,
2023-10-16T23:04:21.2197397Z   preRelease: undefined,
2023-10-16T23:04:21.2198172Z   build: undefined
2023-10-16T23:04:21.2198860Z }
2023-10-16T23:04:21.2199774Z ❯ SHA not found in recent commits to branch main, skipping
2023-10-16T23:04:21.2200966Z ❯ found 1 possible releases. [
2023-10-16T23:04:21.2201713Z   Version {
2023-10-16T23:04:21.2202295Z     major: 0,
2023-10-16T23:04:21.2203076Z     minor: 4,
2023-10-16T23:04:21.2203744Z     patch: 0,
2023-10-16T23:04:21.2204864Z     preRelease: undefined,
2023-10-16T23:04:21.2205679Z     build: undefined
2023-10-16T23:04:21.2206391Z   }
2023-10-16T23:04:21.2207021Z ]
2023-10-16T23:04:21.2207976Z ✔ Building releases
2023-10-16T23:04:21.2208842Z ✔ Building strategies by path
2023-10-16T23:04:21.2209796Z ❯ .: node
2023-10-16T23:04:22.2302365Z ❯ Found pull request #212: 'chore(main): release 0.4.0'
2023-10-16T23:04:22.2307710Z ✖ Pull request body did not match
2023-10-16T23:04:22.2309408Z ❯ could not parse pull request body as a release PR
2023-10-16T23:04:27.6029366Z ❯ Fetching package.json from branch main
2023-10-16T23:04:27.6036564Z ✔ Looking for latest release on branch: main with prefix: tui
2023-10-16T23:04:27.6040929Z ❯ Fetching merge commits on branch main with cursor: undefined
2023-10-16T23:04:29.6064882Z ❯ Found latest release pull request: 212 version: 0.4.0
2023-10-16T23:04:29.6065930Z ❯ Fetching releases with cursor undefined
2023-10-16T23:04:29.9713344Z ❯ found release for tui Version {
2023-10-16T23:04:29.9714211Z   major: 0,
2023-10-16T23:04:29.9715125Z   minor: 3,
2023-10-16T23:04:29.9715647Z   patch: 0,
2023-10-16T23:04:29.9874276Z   preRelease: undefined,
2023-10-16T23:04:29.9876432Z   build: undefined
2023-10-16T23:04:29.9876778Z }
2023-10-16T23:04:29.9877662Z ❯ SHA not found in recent commits to branch main, skipping
2023-10-16T23:04:29.9878464Z ❯ found release for tui Version {
2023-10-16T23:04:29.9878879Z   major: 0,
2023-10-16T23:04:29.9879350Z   minor: 2,
2023-10-16T23:04:29.9879664Z   patch: 0,
2023-10-16T23:04:29.9879998Z   preRelease: undefined,
2023-10-16T23:04:29.9880399Z   build: undefined
2023-10-16T23:04:29.9880715Z }
2023-10-16T23:04:29.9881199Z ❯ SHA not found in recent commits to branch main, skipping
2023-10-16T23:04:29.9881978Z ❯ found 1 possible releases. [
2023-10-16T23:04:29.9882364Z   Version {
2023-10-16T23:04:29.9882623Z     major: 0,
2023-10-16T23:04:29.9882912Z     minor: 4,
2023-10-16T23:04:29.9883184Z     patch: 0,
2023-10-16T23:04:29.9883492Z     preRelease: undefined,
2023-10-16T23:04:29.9883861Z     build: undefined
2023-10-16T23:04:29.9884159Z   }
2023-10-16T23:04:29.9884403Z ]
2023-10-16T23:04:29.9884796Z ✔ Building pull requests
2023-10-16T23:04:29.9885232Z ✔ Building strategies by path
2023-10-16T23:04:29.9885651Z ❯ .: node
2023-10-16T23:04:29.9886022Z ✔ Collecting release commit SHAs
2023-10-16T23:04:29.9886486Z ❯ release search depth: 400
2023-10-16T23:04:29.9887007Z ❯ Fetching releases with cursor undefined
2023-10-16T23:04:30.2947492Z ⚠ Expected 1 releases, only found 0
2023-10-16T23:04:30.2948137Z ⚠ Missing 1 paths: .
2023-10-16T23:04:30.5662269Z ⚠ Expected 1 releases, only found 0
2023-10-16T23:04:30.5663078Z ❯ looking for tagName: v0.4.0
2023-10-16T23:04:30.5664930Z ✔ Collecting commits since all latest releases
2023-10-16T23:04:30.5665837Z ❯ commit search depth: 500
2023-10-16T23:04:30.5666511Z ❯ Set(0) {}
2023-10-16T23:04:30.5667303Z ❯ Fetching merge commits on branch main with cursor: undefined
2023-10-16T23:04:33.2401381Z ❯ Fetching merge commits on branch main with cursor: 9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f 24
2023-10-16T23:04:36.1536615Z ❯ Fetching merge commits on branch main with cursor: 9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f 49
2023-10-16T23:04:38.7692644Z ❯ Fetching merge commits on branch main with cursor: 9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f 74
2023-10-16T23:04:42.6397976Z ❯ Fetching merge commits on branch main with cursor: 9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f 99
2023-10-16T23:04:45.8518461Z ❯ Backfilling file list for commit: 2255d723c894667955b64265ec891a7c6ca06812
2023-10-16T23:04:46.1564972Z ❯ Found 1 files
2023-10-16T23:04:46.1573876Z ❯ Fetching merge commits on branch main with cursor: 9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f 124
2023-10-16T23:04:49.2157572Z ❯ Backfilling file list for commit: 0c70844056b85436eff2cd6fe1438d6a9605a32e
2023-10-16T23:04:49.5185585Z ❯ Found 1 files
2023-10-16T23:04:49.5187724Z ❯ Backfilling file list for commit: f8c01366ad97fb7443768d822ee846262e5dbd7b
2023-10-16T23:04:49.8052689Z ❯ Found 2 files
2023-10-16T23:04:49.8054175Z ❯ Backfilling file list for commit: af911d4ae6bb048f9afe9e9811c34763da763422
2023-10-16T23:04:50.1048200Z ❯ Found 1 files
2023-10-16T23:04:50.1049308Z ❯ Backfilling file list for commit: 450bfa98ceaf0ae18ef7b4525e5de1728bb4a740
2023-10-16T23:04:50.3976688Z ❯ Found 2 files
2023-10-16T23:04:50.3977693Z ❯ Backfilling file list for commit: e194c11b5eac92823567fb54bc30692b546b2cd2
2023-10-16T23:04:50.7105157Z ❯ Found 2 files
2023-10-16T23:04:50.7110460Z ❯ Backfilling file list for commit: 6e20f8b06f947649e7c498a713b384feb139dcf1
2023-10-16T23:04:51.0014973Z ❯ Found 1 files
2023-10-16T23:04:51.0021289Z ❯ Backfilling file list for commit: 18dfdb3cad616fc5b72e318939a38f81bb869b5e
2023-10-16T23:04:51.3231391Z ❯ Found 1 files
2023-10-16T23:04:51.3232473Z ❯ Backfilling file list for commit: c48183384eb83da6588774cabb6079535f780883
2023-10-16T23:04:51.5763379Z ❯ Found 1 files
2023-10-16T23:04:51.5764475Z ❯ Backfilling file list for commit: 830381ca43046224fe935ecc574c81440658cb5a
2023-10-16T23:04:51.8465938Z ❯ Found 1 files
2023-10-16T23:04:51.8473899Z ❯ Fetching merge commits on branch main with cursor: 9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f 149
2023-10-16T23:04:55.7734872Z ❯ Backfilling file list for commit: 02e937ac437ef298b6754872cd3f1e027e106e57
2023-10-16T23:04:56.1175074Z ❯ Found 13 files
2023-10-16T23:04:56.1178683Z ❯ Backfilling file list for commit: 9fd471c89db7fb8dec1d2559f9f277449f3675cf
2023-10-16T23:04:56.4299753Z ❯ Found 1 files
2023-10-16T23:04:56.4300947Z ❯ Backfilling file list for commit: f1f595a6fb22d8dd04c0e11f5674a48b73e0389b
2023-10-16T23:04:56.7439593Z ❯ Found 1 files
2023-10-16T23:04:56.7441080Z ❯ Backfilling file list for commit: 317b8b3b811d7fe2098876f8871e45ffb2bc1009
2023-10-16T23:04:57.0204033Z ❯ Found 2 files
2023-10-16T23:04:57.0205620Z ❯ Backfilling file list for commit: 851e3d71b917a2e8ff9ccb114657a4aab4e7e86f
2023-10-16T23:04:57.3066408Z ❯ Found 6 files
2023-10-16T23:04:57.3068038Z ❯ Backfilling file list for commit: 094132aef0dcfef74b719cb4bdb4d13a16eec079
2023-10-16T23:04:57.5365670Z ❯ Found 1 files
2023-10-16T23:04:57.5367283Z ❯ Backfilling file list for commit: b28789b0566af2e63652915833635661ae363128
2023-10-16T23:04:57.9063122Z ❯ Found 3 files
2023-10-16T23:04:57.9065254Z ❯ Backfilling file list for commit: e5fb711865dc6f31bd816f1db37a31c527b494e6
2023-10-16T23:04:58.1905400Z ❯ Found 3 files
2023-10-16T23:04:58.1915046Z ❯ Backfilling file list for commit: d6e3109fd82724845dec367d3872bcffedd35d2b
2023-10-16T23:04:58.4471560Z ❯ Found 2 files
2023-10-16T23:04:58.4504755Z ❯ Backfilling file list for commit: 15779b3973d6013ede3dd14008321bd5a5c8bbaa
2023-10-16T23:04:58.8237876Z ❯ Found 25 files
2023-10-16T23:04:58.8238848Z ❯ Backfilling file list for commit: edab56474d1aefc50845fc47167f39c7534adc74
2023-10-16T23:04:59.1391373Z ❯ Found 1 files
2023-10-16T23:04:59.1397704Z ❯ Backfilling file list for commit: f0377c197c93b0719daaa74ed281acda13e0d794
2023-10-16T23:04:59.3669597Z ❯ Found 2 files
2023-10-16T23:04:59.3671710Z ❯ Backfilling file list for commit: 45581482768b8aa7cf489fa08da5044bdda6c855
2023-10-16T23:04:59.6202362Z ❯ Found 9 files
2023-10-16T23:04:59.6209834Z ❯ Backfilling file list for commit: 9e989be6f8b679ca24ff1415b8c52273be477c75
2023-10-16T23:04:59.9152802Z ❯ Found 2 files
2023-10-16T23:04:59.9156945Z ❯ Fetching merge commits on branch main with cursor: 9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f 174
2023-10-16T23:05:02.0950373Z ❯ Backfilling file list for commit: f2e442ae3ab6d5e8a09d217f1ee271853204dc97
2023-10-16T23:05:02.7371757Z ❯ Found 1 files
2023-10-16T23:05:02.7372652Z ❯ Backfilling file list for commit: 832d0622403a9a3ae3d504402b32e058b76eb2a1
2023-10-16T23:05:03.0463839Z ❯ Found 17 files
2023-10-16T23:05:03.0464842Z ❯ Backfilling file list for commit: e7014d9d5da97d74024c3b4eed8db6b0f822fa6b
2023-10-16T23:05:03.3880758Z ❯ Found 22 files
2023-10-16T23:05:03.3881657Z ❯ Backfilling file list for commit: f7297ee7a27e6295b1645116fef67803682adc8c
2023-10-16T23:05:03.7002125Z ❯ Found 12 files
2023-10-16T23:05:03.7003541Z ❯ Backfilling file list for commit: fca7d0be9c0caa733347944616e58bd87a9fba63
2023-10-16T23:05:03.9582515Z ❯ Found 1 files
2023-10-16T23:05:03.9583887Z ❯ Backfilling file list for commit: e7a0b9b6eb023fc893106bf9f46e87821b672610
2023-10-16T23:05:04.2778832Z ❯ Found 1 files
2023-10-16T23:05:04.2779660Z ❯ Backfilling file list for commit: eef98efe7ef810f4ca06d8ecdf36aa6a8fec6320
2023-10-16T23:05:04.5927913Z ❯ Found 1 files
2023-10-16T23:05:04.5929593Z ❯ Backfilling file list for commit: ea2a88745fc2e965e0ab32276c95c51b9bbf2c10
2023-10-16T23:05:04.9629544Z ❯ Found 20 files
2023-10-16T23:05:04.9633778Z ❯ Backfilling file list for commit: 3aff430aa7d95fb764ba7ee66717edbd8ae68b9f
2023-10-16T23:05:05.3014933Z ❯ Found 20 files
2023-10-16T23:05:05.3020530Z ❯ Backfilling file list for commit: fb3c8f006c5e6424a42991e5d0c23228cee48d1c
2023-10-16T23:05:05.6376156Z ❯ Found 18 files
2023-10-16T23:05:05.6381019Z ❯ Backfilling file list for commit: 37bf8e5853b67d5c926b8b1a0e49dc431a5d5c45
2023-10-16T23:05:05.9624927Z ❯ Found 19 files
2023-10-16T23:05:05.9630617Z ❯ Backfilling file list for commit: 992201c876051900d3bc39384eb4fd6a7ba2a5df
2023-10-16T23:05:06.4295980Z ❯ Found 32 files
2023-10-16T23:05:06.4302159Z ❯ Backfilling file list for commit: 5465fb4268c8d59170be1b97734ec308e692b92d
2023-10-16T23:05:06.7608223Z ❯ Found 2 files
2023-10-16T23:05:06.7614040Z ✔ Splitting 191 commits by path
2023-10-16T23:05:06.7644728Z ✔ No latest release found for path: ., component: , but a previous version (0.4.0) was specified in the manifest.
2023-10-16T23:05:06.7646425Z ✔ Building candidate release pull request for path: .
2023-10-16T23:05:06.7647338Z ❯ type: node
2023-10-16T23:05:06.7647863Z ❯ targetBranch: main
2023-10-16T23:05:06.8152073Z ❯ commit could not be parsed: f7b225908a3ec7c3fe4752b506d1573f394d7573 Integration/card theme v4 (#157)
2023-10-16T23:05:06.8162532Z ❯ commit could not be parsed: fc12e8ec2ab1b602d4c1ec5ee095873ef3cd41be Tap 214 UI shell theme phase 2 (#145)
2023-10-16T23:05:06.8382166Z ❯ commit could not be parsed: 6f8d59ae8f103b62f5f0633e3ddbb881dc445261 Revert "feat: Button Phase 3 (Integration/button) (#126)" (#127)
2023-10-16T23:05:06.8555575Z ❯ commit could not be parsed: 122a8b858a3d443721954b1cf01c5004ba68a679 TAP-284 Subatom Sizing (#89)
2023-10-16T23:05:06.8652347Z ❯ commit could not be parsed: fd47ba258d4189fb8dc9b8c3b9705f17217f19be TAP-280 Create Error Boundary Component
2023-10-16T23:05:06.8696675Z ❯ commit could not be parsed: 13ad962d6fae553383406c2f98b8f332ce430ae4 TAP-285 Add tests to run on pull requests to main (#60)
2023-10-16T23:05:06.8740578Z ❯ commit could not be parsed: 1a05779362637fd0934356c4730e80a61d1d675f TAP-74-Subatom-Typography-eslint-fixes (#46)
2023-10-16T23:05:06.8754960Z ❯ commit could not be parsed: e6fdd29fc9d5f10fc8b0b6f3d7cb3f76473879a7 TAP-74-Subatom-Typography (#43)
2023-10-16T23:05:06.8758832Z ❯ commit could not be parsed: ec82f19d4aa16d5351165c1947254cdab0f0bfb5 TAP-133 add lint rules (#42)
2023-10-16T23:05:06.8765768Z ❯ commit could not be parsed: 0f2c04709e2f0f44a33fe3fabeb8bf79040597a3 TAP-164-SASS-Research-update-SASS-docs (#34)
2023-10-16T23:05:06.8789466Z ❯ commit could not be parsed: feb5b6e7d50731cbaef030cf6bd12bb9208a416b fix for husky (#31)
2023-10-16T23:05:06.8797805Z ❯ commit could not be parsed: eae5e1a78fa9ae1a335b5d04f1e8486e0e581d9f Fix-console-error-multiple-keys (#25)
2023-10-16T23:05:06.8808255Z ❯ commit could not be parsed: 152ec6cc8d91476190ad3ebcd9b716f1176e810c Merge pull request #20 from sam3k/TAP-88-Card-Component
2023-10-16T23:05:06.8831636Z ❯ commit could not be parsed: 450bfa98ceaf0ae18ef7b4525e5de1728bb4a740 Merge remote-tracking branch 'origin' into TAP-88-Card-Component
2023-10-16T23:05:06.8833884Z ❯ commit could not be parsed: 15dbd91f5f15f7aa1dbaaab322caeb7fceee7213 Merge pull request #18 from sam3k/TAP-157-BorderRadius
2023-10-16T23:05:06.8836865Z ❯ commit could not be parsed: e194c11b5eac92823567fb54bc30692b546b2cd2 Merge branch 'main' into TAP-157-BorderRadius
2023-10-16T23:05:06.8841950Z ❯ commit could not be parsed: ada121ab71d585fb6430bb8af86878dd17826a84 Merge pull request #21 from sam3k/GitHubTemplate
2023-10-16T23:05:06.8843802Z ❯ commit could not be parsed: 046828f788b6c768968938c7a0a4c352352f96d7 Merge pull request #19 from sam3k/TAP-159-Elevation
2023-10-16T23:05:06.8848512Z ❯ commit could not be parsed: cb8818440f24232638491a95bdaed1d3df9c8b62 Merge pull request #16 from sam3k/missing-eslint-config
2023-10-16T23:05:06.8876584Z ❯ commit could not be parsed: 0aa393c2115ba488bed0cbce0928d099c9193dc0 Merge pull request #12 from sam3k/TAP-165-setup-husky
2023-10-16T23:05:06.8884644Z ❯ commit could not be parsed: ffd97b0cf23d421212dc1e2c339d63d57cccecc4 Merge pull request #14 from sam3k/TAP-202-jest-alias
2023-10-16T23:05:06.8887586Z ❯ commit could not be parsed: aab9cb3e2391f67a507c10ec7cf8f5b738518268 Merge pull request #11 from sam3k/jest-missing-setup
2023-10-16T23:05:06.8891173Z ❯ commit could not be parsed: a5f0be526bc972829927f323f992ccab01ff4af2 Merge pull request #10 from sam3k/TAP-174-setup-aliases
2023-10-16T23:05:06.8896804Z ❯ commit could not be parsed: c92b6fc96a5de9b6627d0f7b2b5bd02c954a067f Merge pull request #4 from sam3k/sass-folder-setup
2023-10-16T23:05:06.8903018Z ❯ commit could not be parsed: 15779b3973d6013ede3dd14008321bd5a5c8bbaa Merge branch 'main' into sass-folder-setup
2023-10-16T23:05:06.8906561Z ❯ commit could not be parsed: bf430b8d9ab1570846a197622d58c0805ff3906d Merge pull request #9 from sam3k/lint-updates-1
2023-10-16T23:05:06.8908087Z ❯ commit could not be parsed: 1a6c80a610574061f8b161bfd431d802fd9f2990 Merge pull request #8 from sam3k/remove-old-stories
2023-10-16T23:05:06.8909648Z ❯ commit could not be parsed: 8595c263f21556bcfe37d10feb6432dc6e50b3fe Merge pull request #7 from sam3k/prettier-config-updates
2023-10-16T23:05:06.8937655Z ❯ commit could not be parsed: 84fbb06ea6d7d75ef11aa86ec423092949127209 Merge pull request #5 from sam3k/TAP-81-Subatom-Icons
2023-10-16T23:05:06.8939776Z ❯ commit could not be parsed: fca7d0be9c0caa733347944616e58bd87a9fba63 Update src/scss/library/button/_Button.scss
2023-10-16T23:05:06.8940911Z ⚠ No latest release pull request found.
2023-10-16T23:05:06.8942419Z ❯ commit could not be parsed: eef98efe7ef810f4ca06d8ecdf36aa6a8fec6320 Merge branch 'sass-folder-setup' of https://github.com/sam3k/tui into sass-folder-setup
2023-10-16T23:05:06.8944231Z ❯ commit could not be parsed: d6c4a1c3ca181438e3d8e2af07b91e46584e5ed9 Merge pull request #1 from sam3k/eslint-prettier-setup
2023-10-16T23:05:06.8945817Z ❯ commit could not be parsed: f3ce93f37e1eb2620e4bfd103f3d6bbfd92dff34 Merge pull request #2 from sam3k/jest-storybook-setup
2023-10-16T23:05:06.8947123Z ❯ commit could not be parsed: 5465fb4268c8d59170be1b97734ec308e692b92d Initial commit
2023-10-16T23:05:06.8947856Z ❯ commits: 218
2023-10-16T23:05:06.8948211Z ✔ Considering: 218 commits
2023-10-16T23:05:06.8948750Z ❯ component: 
2023-10-16T23:05:06.8949174Z ❯ pull request title pattern: undefined
2023-10-16T23:05:06.8949748Z ❯ Fetching package.json from branch main
2023-10-16T23:05:08.0996359Z ❯ Found pull request #212: 'chore(main): release 0.4.0'
2023-10-16T23:05:08.0998989Z ✖ Pull request body did not match
2023-10-16T23:05:08.0999840Z ❯ could not parse pull request body as a release PR
2023-10-16T23:05:13.8471054Z ✔ Looking for open release pull requests
2023-10-16T23:05:14.4336660Z ✔ found 0 open release pull requests.
2023-10-16T23:05:14.4341701Z ✔ Looking for snoozed release pull requests
2023-10-16T23:05:21.0149250Z ✔ found 0 snoozed release pull requests.
2023-10-16T23:05:21.0154403Z ❯ Fetching package-lock.json from branch main
2023-10-16T23:05:21.4920926Z ✔ updating from 0.4.0 to 0.2.0
2023-10-16T23:05:21.5175053Z ❯ Fetching npm-shrinkwrap.json from branch main
2023-10-16T23:05:21.5179829Z ⚠ file npm-shrinkwrap.json did not exist
2023-10-16T23:05:21.5180482Z ❯ Fetching samples/package.json from branch main
2023-10-16T23:05:21.5183761Z ⚠ file samples/package.json did not exist
2023-10-16T23:05:21.5186018Z ❯ Fetching CHANGELOG.md from branch main
2023-10-16T23:05:21.7613579Z ❯ Fetching package.json from branch main
2023-10-16T23:05:21.7618207Z ✔ updating from 0.4.0 to 0.2.0
2023-10-16T23:05:21.7622657Z ❯ Fetching changelog.json from branch main
2023-10-16T23:05:21.7626566Z ⚠ file changelog.json did not exist
2023-10-16T23:05:21.7627821Z ❯ Fetching .release-please-manifest.json from branch main
2023-10-16T23:05:21.7630509Z ⚠ file .release-please-manifest.json did not exist
2023-10-16T23:05:21.7636198Z ✔ Starting GitHub PR workflow...
2023-10-16T23:05:22.0585321Z ✔ Successfully found branch HEAD sha "9e7e789fb1c6981279c91fa8b5d9f4e0607b8e1f".
2023-10-16T23:05:22.7339334Z ✔ Successfully created branch at https://api.github.com/repos/parce/tui/git/refs/heads/release-please--branches--main--components--tui
2023-10-16T23:05:23.0476037Z ✔ Got the latest commit tree
2023-10-16T23:05:23.6534828Z ✔ Successfully created a tree with the desired changes with SHA 4a411c2aae20c27c0c4dd54c2d8a94f98c41d88b
2023-10-16T23:05:23.9800238Z ✔ Successfully created commit. See commit at https://api.github.com/repos/parce/tui/git/commits/57e7834c565c84833d02c7ac0aeb0d6021ad953b
2023-10-16T23:05:23.9807255Z ✔ Updating reference heads/release-please--branches--main--components--tui to 57e7834c565c84833d02c7ac0aeb0d6021ad953b
2023-10-16T23:05:24.3774160Z ✔ Successfully updated reference release-please--branches--main--components--tui to 57e7834c565c84833d02c7ac0aeb0d6021ad953b
2023-10-16T23:05:26.0465248Z ✔ Successfully opened pull request available at url: https://api.github.com/repos/parce/tui/pulls/248.
2023-10-16T23:05:26.0466277Z ✔ Successfully opened pull request: 248.
2023-10-16T23:05:27.0563317Z ✔ Successfully added labels autorelease: pending to issue: 248
2023-10-16T23:05:27.5313895Z ##[debug]Node Action run completed with exit code 0
2023-10-16T23:05:27.5511005Z ##[debug]Set output paths_released = []
2023-10-16T23:05:27.5632648Z ##[debug]Set output pr = {"headBranchName":"release-please--branches--main--components--tui","baseBranchName":"main","number":248,"title":"chore(main): release 0.2.0","body":":robot: I have created a release *beep* *boop*\n---\n\n\n## [0.2.0](https://github.com/parce/tui/compare/v0.4.0...v0.2.0) (2023-10-16)\n\n\n### Features\n\n* Add CODEOWNERS file ([#52](https://github.com/parce/tui/issues/52)) ([433f684](https://github.com/parce/tui/commit/433f684c63cf2bb252f281866520a6b8bfd8f809))\n* Add color-cerulean and color-cerulean-light ([#195](https://github.com/parce/tui/issues/195)) ([c983e3a](https://github.com/parce/tui/commit/c983e3a7105830a27851afcf59e62a9f71eea389))\n* add motion docs and variables ([#90](https://github.com/parce/tui/issues/90)) ([bd3302d](https://github.com/parce/tui/commit/bd3302d503baf276e927fbd8f6d4d67cbaf68533))\n* add new subatom color variants from figma ([#137](https://github.com/parce/tui/issues/137)) ([a52f652](https://github.com/parce/tui/commit/a52f65271ccb57524046dc4dd59362184b7e8739))\n* add useBoolean custom hook ([#152](https://github.com/parce/tui/issues/152)) ([100c328](https://github.com/parce/tui/commit/100c328f1fe21b91bd56b7dcfd770254f8e86ced))\n* Add useEventListener and useIsomorphicEffect custom hooks ([#150](https://github.com/parce/tui/issues/150)) ([b74ca7b](https://github.com/parce/tui/commit/b74ca7bc3d22dff435346d25355273dec621a93c))\n* added border radius sub atom story and adjusted current border radiuses ([#35](https://github.com/parce/tui/issues/35)) ([a3b1135](https://github.com/parce/tui/commit/a3b1135b120f3f81f0ef713c81f549c646b88a01))\n* added clean elevation subatom story with proper theme ([#50](https://github.com/parce/tui/issues/50)) ([b3c7500](https://github.com/parce/tui/commit/b3c750094548290a2d208e3ef1f01dd31d213260))\n* added Gallery Cards Template ([#116](https://github.com/parce/tui/issues/116)) ([f529aa6](https://github.com/parce/tui/commit/f529aa651dc77b3b24e217c748a8307aa24d308c))\n* added lint rule jsx-a11y/no-noninteractive-element-interactions ([9c24e7f](https://github.com/parce/tui/commit/9c24e7fff981470653dd8889d275d739cc52c032))\n* added lint rule react/boolean-prop-naming ([e632ac4](https://github.com/parce/tui/commit/e632ac44b5b0535b39b75ab067234ce5c48caa1c))\n* added lint rule react/function-component-definition ([#88](https://github.com/parce/tui/issues/88)) ([01ad9c6](https://github.com/parce/tui/commit/01ad9c657bba45f547e8bb51672af6b121b48454))\n* added lint rule react/iframe-missing-sandbox ([89d243f](https://github.com/parce/tui/commit/89d243fd84c93bdc725f94a67fc704c6ff1ba9ee))\n* added lint rule react/jsx-filename-extension ([842232e](https://github.com/parce/tui/commit/842232ea7747867b4417e4a7e96dd9ccdcc2f643))\n* added lint rule react/no-multi-comp ([ddfa48d](https://github.com/parce/tui/commit/ddfa48d25ec1b260a0b71eb8c3f1ac8a5b45d8a5))\n* added lint rule react/prefer-exact-props ([6738668](https://github.com/parce/tui/commit/673866890aa6556999a467b0a6a1dc9ca22a892d))\n* added new MDX card theme  ([#87](https://github.com/parce/tui/issues/87)) ([ce49a6c](https://github.com/parce/tui/commit/ce49a6c739c9f9bccc2952e825e0d6cc6b9728d3))\n* added pull request template for github ([830381c](https://github.com/parce/tui/commit/830381ca43046224fe935ecc574c81440658cb5a))\n* button icons, states and variants ([#63](https://github.com/parce/tui/issues/63)) ([1c2518c](https://github.com/parce/tui/commit/1c2518ced246807d72be917f6758ac5fa6210ab8))\n* Button Phase 3 (Integration/button) ([#126](https://github.com/parce/tui/issues/126)) ([4df9d85](https://github.com/parce/tui/commit/4df9d85fd9dd0e2a8cd09f4773515e360be57c91))\n* Button Phase 3 (Integration/button) ([#129](https://github.com/parce/tui/issues/129)) ([4ed0aec](https://github.com/parce/tui/commit/4ed0aec614d3b54d27c0bb9a6f4873697c1a63fb))\n* complete review changes add example ([b74ca7b](https://github.com/parce/tui/commit/b74ca7bc3d22dff435346d25355273dec621a93c))\n* Initialized storybook, jest, RTL ([992201c](https://github.com/parce/tui/commit/992201c876051900d3bc39384eb4fd6a7ba2a5df))\n* README install instructions ([b277e0e](https://github.com/parce/tui/commit/b277e0efa4a7f3f4dc6e4edd1426b33b9b8ebeea))\n* SASS config + TAP-80 Sub-atoms: Color: pt1 ([ea2a887](https://github.com/parce/tui/commit/ea2a88745fc2e965e0ab32276c95c51b9bbf2c10))\n* SASS config + TAP-80 Sub-atoms: Color: pt1 ([3aff430](https://github.com/parce/tui/commit/3aff430aa7d95fb764ba7ee66717edbd8ae68b9f))\n* spinner atom ([#202](https://github.com/parce/tui/issues/202)) ([#211](https://github.com/parce/tui/issues/211)) ([bc0550f](https://github.com/parce/tui/commit/bc0550f82948bb983718e1efbdf27db1aa3235aa))\n* Storybook UI Shell Theme - Phase 1 ([#72](https://github.com/parce/tui/issues/72)) ([d5a1f53](https://github.com/parce/tui/commit/d5a1f53b27c5b632c8a9b062b73c1fcc1c160bad))\n* table list block for storybook docs ([#67](https://github.com/parce/tui/issues/67)) ([b2c53f0](https://github.com/parce/tui/commit/b2c53f0af027366b3747f476830dfbef3d20fa98))\n* TAP-137 Add Callout component ([#101](https://github.com/parce/tui/issues/101)) ([#109](https://github.com/parce/tui/issues/109)) ([929f27b](https://github.com/parce/tui/commit/929f27b050bed8d219d5f66c5c5da14ff83431ad))\n* TAP-138 atom tooltip ([#64](https://github.com/parce/tui/issues/64)) ([b7d667c](https://github.com/parce/tui/commit/b7d667ccd5a1c1b4bcb32c3a718a1299d6156fa8))\n* TAP-141 Add checkbox component ([#188](https://github.com/parce/tui/issues/188)) ([584356b](https://github.com/parce/tui/commit/584356bdd071d14fe8f92153a04b9b60fcfa5028))\n* TAP-147 NavGroup and Nav Components ([#160](https://github.com/parce/tui/issues/160)) ([#186](https://github.com/parce/tui/issues/186)) ([99b7f6f](https://github.com/parce/tui/commit/99b7f6f65937613a3abffc6639b0f329c38d16f8))\n* TAP-151 Added RadioGroup component ([#204](https://github.com/parce/tui/issues/204)) && feat: TAP-140 Added Radio Button Component ([#203](https://github.com/parce/tui/issues/203)) ([#219](https://github.com/parce/tui/issues/219)) ([119b7b5](https://github.com/parce/tui/commit/119b7b52b4aa7ac2ef46a6e0644ed2bfde022754))\n* TAP-157 Border Radius ([f1f595a](https://github.com/parce/tui/commit/f1f595a6fb22d8dd04c0e11f5674a48b73e0389b))\n* TAP-158 Add new TextArea component ([#81](https://github.com/parce/tui/issues/81)) ([7d60f8c](https://github.com/parce/tui/commit/7d60f8c28dc1af1248e5aa66a7e0ad1464ff336e))\n* TAP-159 Elevation ([9fd471c](https://github.com/parce/tui/commit/9fd471c89db7fb8dec1d2559f9f277449f3675cf))\n* TAP-163 Subatom Advanced Icons ([#39](https://github.com/parce/tui/issues/39)) ([4e991d3](https://github.com/parce/tui/commit/4e991d34be7ddfe8285c3c8c0680acb4f1806be2))\n* TAP-203 Add TextInput component ([#222](https://github.com/parce/tui/issues/222)) ([d47bb5c](https://github.com/parce/tui/commit/d47bb5cdc06809bd611171a3e190e16373548bbf))\n* TAP-276 (NEW) launch card added with new story util features ([#86](https://github.com/parce/tui/issues/86)) ([e1c21d0](https://github.com/parce/tui/commit/e1c21d08181079cd0efbb1dc91a58d1b1bacdb7f))\n* TAP-278 custom partials POC ([#28](https://github.com/parce/tui/issues/28)) ([784fd14](https://github.com/parce/tui/commit/784fd1419b0f92547a2019f7b5fa80bf7a706fb3))\n* TAP-279 add contribution section with best practices docs ([#29](https://github.com/parce/tui/issues/29)) ([9d5a593](https://github.com/parce/tui/commit/9d5a593311412bce977d1efb515537f3b3c7dc5d))\n* TAP-283 subatom radius with updated theme and images ([#53](https://github.com/parce/tui/issues/53)) ([33a3e7c](https://github.com/parce/tui/commit/33a3e7cc9c7aefaa1a548ee1e876b0203e352d73))\n* TAP-286 atom branding ([#84](https://github.com/parce/tui/issues/84)) ([5883cf8](https://github.com/parce/tui/commit/5883cf8ef2f5be13aac49084d578c1b36ebe1f97))\n* TAP-292 Add github action for chromatic deploy ([#51](https://github.com/parce/tui/issues/51)) ([cc7eaf5](https://github.com/parce/tui/commit/cc7eaf55bb0e3dcfcd891632c94bb6511dd4beb9))\n* TAP-299 Add auto-generated conventional commits via commitizen ([#68](https://github.com/parce/tui/issues/68)) ([3934913](https://github.com/parce/tui/commit/3934913cc597f86ec98d4b646b5e643c025f6f37))\n* TAP-301 Add deprecation process to codebase ([#71](https://github.com/parce/tui/issues/71)) ([655ea19](https://github.com/parce/tui/commit/655ea1928106161545dfca0be82d68965d9e4a62))\n* TAP-341 Welcome Page ([#205](https://github.com/parce/tui/issues/205)) ([f6c9db3](https://github.com/parce/tui/commit/f6c9db3207426389d404d0fc38fca39d21f03d2f))\n* TAP-342 add breakpoint configuration ([#110](https://github.com/parce/tui/issues/110)) ([e520c3d](https://github.com/parce/tui/commit/e520c3d3bfd0f0a00f87da62fc706ca43bd0c180))\n* TAP-349 Make design review changes ([#120](https://github.com/parce/tui/issues/120)) ([ae65ff9](https://github.com/parce/tui/commit/ae65ff9a5ac6f1381b1f1dcd76f576d7c10ee07e))\n* TAP-350 Add directional callout component ([#146](https://github.com/parce/tui/issues/146)) ([27ec764](https://github.com/parce/tui/commit/27ec7640401fbc18d15c03c4a07e9fd458c318cd))\n* TAP-351 Added Card Partials Override prop to Card Component ([#181](https://github.com/parce/tui/issues/181)) ([454cff9](https://github.com/parce/tui/commit/454cff964131b4993780e97eae0b5e5cda665533))\n* TAP-354 tooltip phase 3 ([#176](https://github.com/parce/tui/issues/176)) ([0ebab17](https://github.com/parce/tui/commit/0ebab17ed89aef9deccf1b98ed01e60493359951))\n* TAP-377 implement overrides pattern on <Branding /> ([#183](https://github.com/parce/tui/issues/183)) ([c0ebaf0](https://github.com/parce/tui/commit/c0ebaf066e3dbf08f3a54ee2e8097d4bc2177d08))\n* TAP-378 Add partial overrides to Callout ([#166](https://github.com/parce/tui/issues/166)) ([4c012ac](https://github.com/parce/tui/commit/4c012acab49d361e579832716f5c32260c72be31))\n* TAP-72 TAP-73 initialized Storybook, Jest, RTL ([37bf8e5](https://github.com/parce/tui/commit/37bf8e5853b67d5c926b8b1a0e49dc431a5d5c45))\n* TAP-80-subatom-colors-pt2 ([#15](https://github.com/parce/tui/issues/15)) ([f60088b](https://github.com/parce/tui/commit/f60088b01e9c0fa69ecd13e2fb24b86514ed3ca6))\n* TAP-81 subatom icon ([f7297ee](https://github.com/parce/tui/commit/f7297ee7a27e6295b1645116fef67803682adc8c))\n* TAP-82 subatom spacing ([#44](https://github.com/parce/tui/issues/44)) ([61f1567](https://github.com/parce/tui/commit/61f1567e718dfbad327cee5abbfb8d491c86297e))\n* TAP-85 Button atom POC ([#6](https://github.com/parce/tui/issues/6)) ([089a9e3](https://github.com/parce/tui/commit/089a9e334c92c55bc5c86e5bbc600f4703906940))\n* TAP-88 added card component ([02e937a](https://github.com/parce/tui/commit/02e937ac437ef298b6754872cd3f1e027e106e57))\n* Tests for StoryUtils 'docblocks' ([#49](https://github.com/parce/tui/issues/49)) ([6fb5af1](https://github.com/parce/tui/commit/6fb5af1af8c3c6ddb9ee4cc11eef3717dd8b59d9))\n* text input component ([#40](https://github.com/parce/tui/issues/40)) ([9780230](https://github.com/parce/tui/commit/978023033e60162c60dfd99504c35fbe978a819a))\n\n\n### Bug Fixes\n\n* _sbkdocs-config reset.element overriding some styles ([#214](https://github.com/parce/tui/issues/214)) ([88e9909](https://github.com/parce/tui/commit/88e99090af6eace73a6d4b9e3c3111162aa93726))\n* add back missing husky script ([#57](https://github.com/parce/tui/issues/57)) ([7f47293](https://github.com/parce/tui/commit/7f47293d8c7d846db7501b643323cf7f1193db67))\n* Add PR opened type to github actions ([#80](https://github.com/parce/tui/issues/80)) ([fb3c7f5](https://github.com/parce/tui/commit/fb3c7f56a4830b5d4ed6b08001f478415b4227c7))\n* Add rest of args to default stories for Alert & Callout ([#210](https://github.com/parce/tui/issues/210)) ([c5b9128](https://github.com/parce/tui/commit/c5b9128221bfd6384dd4c43961c4018e3e5182f5))\n* add shebang to husky pre-commit ([#41](https://github.com/parce/tui/issues/41)) ([db4f33b](https://github.com/parce/tui/commit/db4f33b19d86539da539f38f5bd9ccedf6834d17))\n* Add storybook page container to alert and callout stories ([#133](https://github.com/parce/tui/issues/133)) ([38886b7](https://github.com/parce/tui/commit/38886b734815e9741e16a28ce2049d435b3e2e3c))\n* added global variable to the Card.spec.jsx file and addeed additional test case to test for ID in Card ([0c70844](https://github.com/parce/tui/commit/0c70844056b85436eff2cd6fe1438d6a9605a32e))\n* added tabIndex to fix accessibility issue found in storybook with overflow content in cardbody ([af911d4](https://github.com/parce/tui/commit/af911d4ae6bb048f9afe9e9811c34763da763422))\n* adjusted comment based on andrews comment ([18dfdb3](https://github.com/parce/tui/commit/18dfdb3cad616fc5b72e318939a38f81bb869b5e))\n* adjusted comment based on Andrews comment ([6e20f8b](https://github.com/parce/tui/commit/6e20f8b06f947649e7c498a713b384feb139dcf1))\n* branding controls aria-label casing ([#95](https://github.com/parce/tui/issues/95)) ([6b33311](https://github.com/parce/tui/commit/6b33311af9138b3b5246658dd2e4d0d57b3001bd))\n* button onClick stopped working ([#131](https://github.com/parce/tui/issues/131)) ([412407e](https://github.com/parce/tui/commit/412407e8c2317a997ebdbfd7ec0d595cc66da608))\n* changed single file into a folder with an overview file instead ([#58](https://github.com/parce/tui/issues/58)) ([6d7e44e](https://github.com/parce/tui/commit/6d7e44e15dda2bb42751041a76e1e7bd7d417339))\n* changed the way ExampleShape was being used ([#92](https://github.com/parce/tui/issues/92)) ([2aa3f4c](https://github.com/parce/tui/commit/2aa3f4cc05c71023ff0afcc55fe2edbe54a37a21))\n* correct Icon size propType ([#55](https://github.com/parce/tui/issues/55)) ([5a72834](https://github.com/parce/tui/commit/5a72834c289cb4d10b4df495e67c528a2edf79a8))\n* fix broken tests for button ([#32](https://github.com/parce/tui/issues/32)) ([60fde82](https://github.com/parce/tui/commit/60fde82d65b514a8209eecbac721e29c9939f7ad))\n* fix Husky bug ([#33](https://github.com/parce/tui/issues/33)) ([014b894](https://github.com/parce/tui/commit/014b894be70e32b0c49bc3d5747c355f6783ca92))\n* Fix icon not re-rendering properly ([#105](https://github.com/parce/tui/issues/105)) ([3e3633e](https://github.com/parce/tui/commit/3e3633e1127ab3f83886301af03fb74fea7ff8ef))\n* Fix storybook selector override ([#132](https://github.com/parce/tui/issues/132)) ([e17cf0f](https://github.com/parce/tui/commit/e17cf0f8b252a93d4fa90bb878a7f3067be7b1ca))\n* Fix vulnerability issues on npm install ([#223](https://github.com/parce/tui/issues/223)) ([36504ae](https://github.com/parce/tui/commit/36504ae00b9a3c79b15127bf0c98044288ca5e44))\n* fixed all warnings in card component and scrolling within card body ([#30](https://github.com/parce/tui/issues/30)) ([0ee40c1](https://github.com/parce/tui/commit/0ee40c117d8b113bc58d289eeaceaa096f6def27))\n* icon control options for colorScheme, size ([#178](https://github.com/parce/tui/issues/178)) ([4cd1372](https://github.com/parce/tui/commit/4cd1372c986a14c819106e3ca2b83a338cfc58cc))\n* merge-conflicts ([d6e3109](https://github.com/parce/tui/commit/d6e3109fd82724845dec367d3872bcffedd35d2b))\n* missing eslint package ([317b8b3](https://github.com/parce/tui/commit/317b8b3b811d7fe2098876f8871e45ffb2bc1009))\n* rebase-merge-conflicts ([e7a0b9b](https://github.com/parce/tui/commit/e7a0b9b6eb023fc893106bf9f46e87821b672610))\n* remove tooltip warning from icon gallery ([#24](https://github.com/parce/tui/issues/24)) ([326467a](https://github.com/parce/tui/commit/326467aeefccb2072dc55f09ebc99273fcd78984))\n* removed data-testid from card partials ([c481833](https://github.com/parce/tui/commit/c48183384eb83da6588774cabb6079535f780883))\n* removed hardcoded data-testid and adjusted test cases ([f8c0136](https://github.com/parce/tui/commit/f8c01366ad97fb7443768d822ee846262e5dbd7b))\n* removed pink background and class ([#56](https://github.com/parce/tui/issues/56)) ([cde470c](https://github.com/parce/tui/commit/cde470cf27e26ad453bea345056ab8f317a3abe0))\n* StoryTable height ([#128](https://github.com/parce/tui/issues/128)) ([d2bb6c7](https://github.com/parce/tui/commit/d2bb6c7ae985369c89e8d68804f6485a64534474))\n* TAP-282 eslint alis fix ([#38](https://github.com/parce/tui/issues/38)) ([14ca1c3](https://github.com/parce/tui/commit/14ca1c380e9a48a1d60b87387f62f07002e2ec86))\n* TAP-325 correct jest regex for aliases ([#91](https://github.com/parce/tui/issues/91)) ([f40c5fe](https://github.com/parce/tui/commit/f40c5fe5c99dea5f5a45d5fba59b172bbd2fad14))\n* TAP-338 correct icon behavior in text blocks ([#99](https://github.com/parce/tui/issues/99)) ([1bb8905](https://github.com/parce/tui/commit/1bb8905a51150e22a56b9fa8b21fc15ee747d827))\n* TAP-352 fix icon flex behavior ([#130](https://github.com/parce/tui/issues/130)) ([3a73e04](https://github.com/parce/tui/commit/3a73e04bf820bcf3d2f2fbef70b8309ab089a644))\n* TAP-371 update color focus visible in button ([#147](https://github.com/parce/tui/issues/147)) ([052c102](https://github.com/parce/tui/commit/052c1024813d41ccba5d23a9672055c3ec78e061))\n* TAP-389 <Branding /> controls for id, className, and aria-label ([#169](https://github.com/parce/tui/issues/169)) ([3ce27cb](https://github.com/parce/tui/commit/3ce27cb80cf65e0fc4baee49c38f6331b5dacde7))\n* typo in .gitignore ([2255d72](https://github.com/parce/tui/commit/2255d723c894667955b64265ec891a7c6ca06812))\n* typo in button unit test ([#22](https://github.com/parce/tui/issues/22)) ([94c3ad4](https://github.com/parce/tui/commit/94c3ad4ae54e17e87546b63d9d441217304b89c3))\n* Update ESLint script ([#74](https://github.com/parce/tui/issues/74)) ([478048c](https://github.com/parce/tui/commit/478048cfe022e1e713a7ae5c01353b3778a0f8a1))\n* Webpack aliases work with Jest testing suites ([094132a](https://github.com/parce/tui/commit/094132aef0dcfef74b719cb4bdb4d13a16eec079))\n\n\n### Miscellaneous Chores\n\n* release 0.2.0 ([#193](https://github.com/parce/tui/issues/193)) ([a780030](https://github.com/parce/tui/commit/a780030caaf60f668f706484f9228584544ff59d))\n\n---\nThis PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).","files":[],"labels":["autorelease: pending"]}
2023-10-16T23:05:27.5865928Z ##[debug]Set output prs = [{"headBranchName":"release-please--branches--main--components--tui","baseBranchName":"main","number":248,"title":"chore(main): release 0.2.0","body":":robot: I have created a release *beep* *boop*\n---\n\n\n## [0.2.0](https://github.com/parce/tui/compare/v0.4.0...v0.2.0) (2023-10-16)\n\n\n### Features\n\n* Add CODEOWNERS file ([#52](https://github.com/parce/tui/issues/52)) ([433f684](https://github.com/parce/tui/commit/433f684c63cf2bb252f281866520a6b8bfd8f809))\n* Add color-cerulean and color-cerulean-light ([#195](https://github.com/parce/tui/issues/195)) ([c983e3a](https://github.com/parce/tui/commit/c983e3a7105830a27851afcf59e62a9f71eea389))\n* add motion docs and variables ([#90](https://github.com/parce/tui/issues/90)) ([bd3302d](https://github.com/parce/tui/commit/bd3302d503baf276e927fbd8f6d4d67cbaf68533))\n* add new subatom color variants from figma ([#137](https://github.com/parce/tui/issues/137)) ([a52f652](https://github.com/parce/tui/commit/a52f65271ccb57524046dc4dd59362184b7e8739))\n* add useBoolean custom hook ([#152](https://github.com/parce/tui/issues/152)) ([100c328](https://github.com/parce/tui/commit/100c328f1fe21b91bd56b7dcfd770254f8e86ced))\n* Add useEventListener and useIsomorphicEffect custom hooks ([#150](https://github.com/parce/tui/issues/150)) ([b74ca7b](https://github.com/parce/tui/commit/b74ca7bc3d22dff435346d25355273dec621a93c))\n* added border radius sub atom story and adjusted current border radiuses ([#35](https://github.com/parce/tui/issues/35)) ([a3b1135](https://github.com/parce/tui/commit/a3b1135b120f3f81f0ef713c81f549c646b88a01))\n* added clean elevation subatom story with proper theme ([#50](https://github.com/parce/tui/issues/50)) ([b3c7500](https://github.com/parce/tui/commit/b3c750094548290a2d208e3ef1f01dd31d213260))\n* added Gallery Cards Template ([#116](https://github.com/parce/tui/issues/116)) ([f529aa6](https://github.com/parce/tui/commit/f529aa651dc77b3b24e217c748a8307aa24d308c))\n* added lint rule jsx-a11y/no-noninteractive-element-interactions ([9c24e7f](https://github.com/parce/tui/commit/9c24e7fff981470653dd8889d275d739cc52c032))\n* added lint rule react/boolean-prop-naming ([e632ac4](https://github.com/parce/tui/commit/e632ac44b5b0535b39b75ab067234ce5c48caa1c))\n* added lint rule react/function-component-definition ([#88](https://github.com/parce/tui/issues/88)) ([01ad9c6](https://github.com/parce/tui/commit/01ad9c657bba45f547e8bb51672af6b121b48454))\n* added lint rule react/iframe-missing-sandbox ([89d243f](https://github.com/parce/tui/commit/89d243fd84c93bdc725f94a67fc704c6ff1ba9ee))\n* added lint rule react/jsx-filename-extension ([842232e](https://github.com/parce/tui/commit/842232ea7747867b4417e4a7e96dd9ccdcc2f643))\n* added lint rule react/no-multi-comp ([ddfa48d](https://github.com/parce/tui/commit/ddfa48d25ec1b260a0b71eb8c3f1ac8a5b45d8a5))\n* added lint rule react/prefer-exact-props ([6738668](https://github.com/parce/tui/commit/673866890aa6556999a467b0a6a1dc9ca22a892d))\n* added new MDX card theme  ([#87](https://github.com/parce/tui/issues/87)) ([ce49a6c](https://github.com/parce/tui/commit/ce49a6c739c9f9bccc2952e825e0d6cc6b9728d3))\n* added pull request template for github ([830381c](https://github.com/parce/tui/commit/830381ca43046224fe935ecc574c81440658cb5a))\n* button icons, states and variants ([#63](https://github.com/parce/tui/issues/63)) ([1c2518c](https://github.com/parce/tui/commit/1c2518ced246807d72be917f6758ac5fa6210ab8))\n* Button Phase 3 (Integration/button) ([#126](https://github.com/parce/tui/issues/126)) ([4df9d85](https://github.com/parce/tui/commit/4df9d85fd9dd0e2a8cd09f4773515e360be57c91))\n* Button Phase 3 (Integration/button) ([#129](https://github.com/parce/tui/issues/129)) ([4ed0aec](https://github.com/parce/tui/commit/4ed0aec614d3b54d27c0bb9a6f4873697c1a63fb))\n* complete review changes add example ([b74ca7b](https://github.com/parce/tui/commit/b74ca7bc3d22dff435346d25355273dec621a93c))\n* Initialized storybook, jest, RTL ([992201c](https://github.com/parce/tui/commit/992201c876051900d3bc39384eb4fd6a7ba2a5df))\n* README install instructions ([b277e0e](https://github.com/parce/tui/commit/b277e0efa4a7f3f4dc6e4edd1426b33b9b8ebeea))\n* SASS config + TAP-80 Sub-atoms: Color: pt1 ([ea2a887](https://github.com/parce/tui/commit/ea2a88745fc2e965e0ab32276c95c51b9bbf2c10))\n* SASS config + TAP-80 Sub-atoms: Color: pt1 ([3aff430](https://github.com/parce/tui/commit/3aff430aa7d95fb764ba7ee66717edbd8ae68b9f))\n* spinner atom ([#202](https://github.com/parce/tui/issues/202)) ([#211](https://github.com/parce/tui/issues/211)) ([bc0550f](https://github.com/parce/tui/commit/bc0550f82948bb983718e1efbdf27db1aa3235aa))\n* Storybook UI Shell Theme - Phase 1 ([#72](https://github.com/parce/tui/issues/72)) ([d5a1f53](https://github.com/parce/tui/commit/d5a1f53b27c5b632c8a9b062b73c1fcc1c160bad))\n* table list block for storybook docs ([#67](https://github.com/parce/tui/issues/67)) ([b2c53f0](https://github.com/parce/tui/commit/b2c53f0af027366b3747f476830dfbef3d20fa98))\n* TAP-137 Add Callout component ([#101](https://github.com/parce/tui/issues/101)) ([#109](https://github.com/parce/tui/issues/109)) ([929f27b](https://github.com/parce/tui/commit/929f27b050bed8d219d5f66c5c5da14ff83431ad))\n* TAP-138 atom tooltip ([#64](https://github.com/parce/tui/issues/64)) ([b7d667c](https://github.com/parce/tui/commit/b7d667ccd5a1c1b4bcb32c3a718a1299d6156fa8))\n* TAP-141 Add checkbox component ([#188](https://github.com/parce/tui/issues/188)) ([584356b](https://github.com/parce/tui/commit/584356bdd071d14fe8f92153a04b9b60fcfa5028))\n* TAP-147 NavGroup and Nav Components ([#160](https://github.com/parce/tui/issues/160)) ([#186](https://github.com/parce/tui/issues/186)) ([99b7f6f](https://github.com/parce/tui/commit/99b7f6f65937613a3abffc6639b0f329c38d16f8))\n* TAP-151 Added RadioGroup component ([#204](https://github.com/parce/tui/issues/204)) && feat: TAP-140 Added Radio Button Component ([#203](https://github.com/parce/tui/issues/203)) ([#219](https://github.com/parce/tui/issues/219)) ([119b7b5](https://github.com/parce/tui/commit/119b7b52b4aa7ac2ef46a6e0644ed2bfde022754))\n* TAP-157 Border Radius ([f1f595a](https://github.com/parce/tui/commit/f1f595a6fb22d8dd04c0e11f5674a48b73e0389b))\n* TAP-158 Add new TextArea component ([#81](https://github.com/parce/tui/issues/81)) ([7d60f8c](https://github.com/parce/tui/commit/7d60f8c28dc1af1248e5aa66a7e0ad1464ff336e))\n* TAP-159 Elevation ([9fd471c](https://github.com/parce/tui/commit/9fd471c89db7fb8dec1d2559f9f277449f3675cf))\n* TAP-163 Subatom Advanced Icons ([#39](https://github.com/parce/tui/issues/39)) ([4e991d3](https://github.com/parce/tui/commit/4e991d34be7ddfe8285c3c8c0680acb4f1806be2))\n* TAP-203 Add TextInput component ([#222](https://github.com/parce/tui/issues/222)) ([d47bb5c](https://github.com/parce/tui/commit/d47bb5cdc06809bd611171a3e190e16373548bbf))\n* TAP-276 (NEW) launch card added with new story util features ([#86](https://github.com/parce/tui/issues/86)) ([e1c21d0](https://github.com/parce/tui/commit/e1c21d08181079cd0efbb1dc91a58d1b1bacdb7f))\n* TAP-278 custom partials POC ([#28](https://github.com/parce/tui/issues/28)) ([784fd14](https://github.com/parce/tui/commit/784fd1419b0f92547a2019f7b5fa80bf7a706fb3))\n* TAP-279 add contribution section with best practices docs ([#29](https://github.com/parce/tui/issues/29)) ([9d5a593](https://github.com/parce/tui/commit/9d5a593311412bce977d1efb515537f3b3c7dc5d))\n* TAP-283 subatom radius with updated theme and images ([#53](https://github.com/parce/tui/issues/53)) ([33a3e7c](https://github.com/parce/tui/commit/33a3e7cc9c7aefaa1a548ee1e876b0203e352d73))\n* TAP-286 atom branding ([#84](https://github.com/parce/tui/issues/84)) ([5883cf8](https://github.com/parce/tui/commit/5883cf8ef2f5be13aac49084d578c1b36ebe1f97))\n* TAP-292 Add github action for chromatic deploy ([#51](https://github.com/parce/tui/issues/51)) ([cc7eaf5](https://github.com/parce/tui/commit/cc7eaf55bb0e3dcfcd891632c94bb6511dd4beb9))\n* TAP-299 Add auto-generated conventional commits via commitizen ([#68](https://github.com/parce/tui/issues/68)) ([3934913](https://github.com/parce/tui/commit/3934913cc597f86ec98d4b646b5e643c025f6f37))\n* TAP-301 Add deprecation process to codebase ([#71](https://github.com/parce/tui/issues/71)) ([655ea19](https://github.com/parce/tui/commit/655ea1928106161545dfca0be82d68965d9e4a62))\n* TAP-341 Welcome Page ([#205](https://github.com/parce/tui/issues/205)) ([f6c9db3](https://github.com/parce/tui/commit/f6c9db3207426389d404d0fc38fca39d21f03d2f))\n* TAP-342 add breakpoint configuration ([#110](https://github.com/parce/tui/issues/110)) ([e520c3d](https://github.com/parce/tui/commit/e520c3d3bfd0f0a00f87da62fc706ca43bd0c180))\n* TAP-349 Make design review changes ([#120](https://github.com/parce/tui/issues/120)) ([ae65ff9](https://github.com/parce/tui/commit/ae65ff9a5ac6f1381b1f1dcd76f576d7c10ee07e))\n* TAP-350 Add directional callout component ([#146](https://github.com/parce/tui/issues/146)) ([27ec764](https://github.com/parce/tui/commit/27ec7640401fbc18d15c03c4a07e9fd458c318cd))\n* TAP-351 Added Card Partials Override prop to Card Component ([#181](https://github.com/parce/tui/issues/181)) ([454cff9](https://github.com/parce/tui/commit/454cff964131b4993780e97eae0b5e5cda665533))\n* TAP-354 tooltip phase 3 ([#176](https://github.com/parce/tui/issues/176)) ([0ebab17](https://github.com/parce/tui/commit/0ebab17ed89aef9deccf1b98ed01e60493359951))\n* TAP-377 implement overrides pattern on <Branding /> ([#183](https://github.com/parce/tui/issues/183)) ([c0ebaf0](https://github.com/parce/tui/commit/c0ebaf066e3dbf08f3a54ee2e8097d4bc2177d08))\n* TAP-378 Add partial overrides to Callout ([#166](https://github.com/parce/tui/issues/166)) ([4c012ac](https://github.com/parce/tui/commit/4c012acab49d361e579832716f5c32260c72be31))\n* TAP-72 TAP-73 initialized Storybook, Jest, RTL ([37bf8e5](https://github.com/parce/tui/commit/37bf8e5853b67d5c926b8b1a0e49dc431a5d5c45))\n* TAP-80-subatom-colors-pt2 ([#15](https://github.com/parce/tui/issues/15)) ([f60088b](https://github.com/parce/tui/commit/f60088b01e9c0fa69ecd13e2fb24b86514ed3ca6))\n* TAP-81 subatom icon ([f7297ee](https://github.com/parce/tui/commit/f7297ee7a27e6295b1645116fef67803682adc8c))\n* TAP-82 subatom spacing ([#44](https://github.com/parce/tui/issues/44)) ([61f1567](https://github.com/parce/tui/commit/61f1567e718dfbad327cee5abbfb8d491c86297e))\n* TAP-85 Button atom POC ([#6](https://github.com/parce/tui/issues/6)) ([089a9e3](https://github.com/parce/tui/commit/089a9e334c92c55bc5c86e5bbc600f4703906940))\n* TAP-88 added card component ([02e937a](https://github.com/parce/tui/commit/02e937ac437ef298b6754872cd3f1e027e106e57))\n* Tests for StoryUtils 'docblocks' ([#49](https://github.com/parce/tui/issues/49)) ([6fb5af1](https://github.com/parce/tui/commit/6fb5af1af8c3c6ddb9ee4cc11eef3717dd8b59d9))\n* text input component ([#40](https://github.com/parce/tui/issues/40)) ([9780230](https://github.com/parce/tui/commit/978023033e60162c60dfd99504c35fbe978a819a))\n\n\n### Bug Fixes\n\n* _sbkdocs-config reset.element overriding some styles ([#214](https://github.com/parce/tui/issues/214)) ([88e9909](https://github.com/parce/tui/commit/88e99090af6eace73a6d4b9e3c3111162aa93726))\n* add back missing husky script ([#57](https://github.com/parce/tui/issues/57)) ([7f47293](https://github.com/parce/tui/commit/7f47293d8c7d846db7501b643323cf7f1193db67))\n* Add PR opened type to github actions ([#80](https://github.com/parce/tui/issues/80)) ([fb3c7f5](https://github.com/parce/tui/commit/fb3c7f56a4830b5d4ed6b08001f478415b4227c7))\n* Add rest of args to default stories for Alert & Callout ([#210](https://github.com/parce/tui/issues/210)) ([c5b9128](https://github.com/parce/tui/commit/c5b9128221bfd6384dd4c43961c4018e3e5182f5))\n* add shebang to husky pre-commit ([#41](https://github.com/parce/tui/issues/41)) ([db4f33b](https://github.com/parce/tui/commit/db4f33b19d86539da539f38f5bd9ccedf6834d17))\n* Add storybook page container to alert and callout stories ([#133](https://github.com/parce/tui/issues/133)) ([38886b7](https://github.com/parce/tui/commit/38886b734815e9741e16a28ce2049d435b3e2e3c))\n* added global variable to the Card.spec.jsx file and addeed additional test case to test for ID in Card ([0c70844](https://github.com/parce/tui/commit/0c70844056b85436eff2cd6fe1438d6a9605a32e))\n* added tabIndex to fix accessibility issue found in storybook with overflow content in cardbody ([af911d4](https://github.com/parce/tui/commit/af911d4ae6bb048f9afe9e9811c34763da763422))\n* adjusted comment based on andrews comment ([18dfdb3](https://github.com/parce/tui/commit/18dfdb3cad616fc5b72e318939a38f81bb869b5e))\n* adjusted comment based on Andrews comment ([6e20f8b](https://github.com/parce/tui/commit/6e20f8b06f947649e7c498a713b384feb139dcf1))\n* branding controls aria-label casing ([#95](https://github.com/parce/tui/issues/95)) ([6b33311](https://github.com/parce/tui/commit/6b33311af9138b3b5246658dd2e4d0d57b3001bd))\n* button onClick stopped working ([#131](https://github.com/parce/tui/issues/131)) ([412407e](https://github.com/parce/tui/commit/412407e8c2317a997ebdbfd7ec0d595cc66da608))\n* changed single file into a folder with an overview file instead ([#58](https://github.com/parce/tui/issues/58)) ([6d7e44e](https://github.com/parce/tui/commit/6d7e44e15dda2bb42751041a76e1e7bd7d417339))\n* changed the way ExampleShape was being used ([#92](https://github.com/parce/tui/issues/92)) ([2aa3f4c](https://github.com/parce/tui/commit/2aa3f4cc05c71023ff0afcc55fe2edbe54a37a21))\n* correct Icon size propType ([#55](https://github.com/parce/tui/issues/55)) ([5a72834](https://github.com/parce/tui/commit/5a72834c289cb4d10b4df495e67c528a2edf79a8))\n* fix broken tests for button ([#32](https://github.com/parce/tui/issues/32)) ([60fde82](https://github.com/parce/tui/commit/60fde82d65b514a8209eecbac721e29c9939f7ad))\n* fix Husky bug ([#33](https://github.com/parce/tui/issues/33)) ([014b894](https://github.com/parce/tui/commit/014b894be70e32b0c49bc3d5747c355f6783ca92))\n* Fix icon not re-rendering properly ([#105](https://github.com/parce/tui/issues/105)) ([3e3633e](https://github.com/parce/tui/commit/3e3633e1127ab3f83886301af03fb74fea7ff8ef))\n* Fix storybook selector override ([#132](https://github.com/parce/tui/issues/132)) ([e17cf0f](https://github.com/parce/tui/commit/e17cf0f8b252a93d4fa90bb878a7f3067be7b1ca))\n* Fix vulnerability issues on npm install ([#223](https://github.com/parce/tui/issues/223)) ([36504ae](https://github.com/parce/tui/commit/36504ae00b9a3c79b15127bf0c98044288ca5e44))\n* fixed all warnings in card component and scrolling within card body ([#30](https://github.com/parce/tui/issues/30)) ([0ee40c1](https://github.com/parce/tui/commit/0ee40c117d8b113bc58d289eeaceaa096f6def27))\n* icon control options for colorScheme, size ([#178](https://github.com/parce/tui/issues/178)) ([4cd1372](https://github.com/parce/tui/commit/4cd1372c986a14c819106e3ca2b83a338cfc58cc))\n* merge-conflicts ([d6e3109](https://github.com/parce/tui/commit/d6e3109fd82724845dec367d3872bcffedd35d2b))\n* missing eslint package ([317b8b3](https://github.com/parce/tui/commit/317b8b3b811d7fe2098876f8871e45ffb2bc1009))\n* rebase-merge-conflicts ([e7a0b9b](https://github.com/parce/tui/commit/e7a0b9b6eb023fc893106bf9f46e87821b672610))\n* remove tooltip warning from icon gallery ([#24](https://github.com/parce/tui/issues/24)) ([326467a](https://github.com/parce/tui/commit/326467aeefccb2072dc55f09ebc99273fcd78984))\n* removed data-testid from card partials ([c481833](https://github.com/parce/tui/commit/c48183384eb83da6588774cabb6079535f780883))\n* removed hardcoded data-testid and adjusted test cases ([f8c0136](https://github.com/parce/tui/commit/f8c01366ad97fb7443768d822ee846262e5dbd7b))\n* removed pink background and class ([#56](https://github.com/parce/tui/issues/56)) ([cde470c](https://github.com/parce/tui/commit/cde470cf27e26ad453bea345056ab8f317a3abe0))\n* StoryTable height ([#128](https://github.com/parce/tui/issues/128)) ([d2bb6c7](https://github.com/parce/tui/commit/d2bb6c7ae985369c89e8d68804f6485a64534474))\n* TAP-282 eslint alis fix ([#38](https://github.com/parce/tui/issues/38)) ([14ca1c3](https://github.com/parce/tui/commit/14ca1c380e9a48a1d60b87387f62f07002e2ec86))\n* TAP-325 correct jest regex for aliases ([#91](https://github.com/parce/tui/issues/91)) ([f40c5fe](https://github.com/parce/tui/commit/f40c5fe5c99dea5f5a45d5fba59b172bbd2fad14))\n* TAP-338 correct icon behavior in text blocks ([#99](https://github.com/parce/tui/issues/99)) ([1bb8905](https://github.com/parce/tui/commit/1bb8905a51150e22a56b9fa8b21fc15ee747d827))\n* TAP-352 fix icon flex behavior ([#130](https://github.com/parce/tui/issues/130)) ([3a73e04](https://github.com/parce/tui/commit/3a73e04bf820bcf3d2f2fbef70b8309ab089a644))\n* TAP-371 update color focus visible in button ([#147](https://github.com/parce/tui/issues/147)) ([052c102](https://github.com/parce/tui/commit/052c1024813d41ccba5d23a9672055c3ec78e061))\n* TAP-389 <Branding /> controls for id, className, and aria-label ([#169](https://github.com/parce/tui/issues/169)) ([3ce27cb](https://github.com/parce/tui/commit/3ce27cb80cf65e0fc4baee49c38f6331b5dacde7))\n* typo in .gitignore ([2255d72](https://github.com/parce/tui/commit/2255d723c894667955b64265ec891a7c6ca06812))\n* typo in button unit test ([#22](https://github.com/parce/tui/issues/22)) ([94c3ad4](https://github.com/parce/tui/commit/94c3ad4ae54e17e87546b63d9d441217304b89c3))\n* Update ESLint script ([#74](https://github.com/parce/tui/issues/74)) ([478048c](https://github.com/parce/tui/commit/478048cfe022e1e713a7ae5c01353b3778a0f8a1))\n* Webpack aliases work with Jest testing suites ([094132a](https://github.com/parce/tui/commit/094132aef0dcfef74b719cb4bdb4d13a16eec079))\n\n\n### Miscellaneous Chores\n\n* release 0.2.0 ([#193](https://github.com/parce/tui/issues/193)) ([a780030](https://github.com/parce/tui/commit/a780030caaf60f668f706484f9228584544ff59d))\n\n---\nThis PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).","files":[],"labels":["autorelease: pending"]}]
2023-10-16T23:05:27.6003182Z ##[debug]Finishing: Run google-github-actions/release-please-action@v3
2023-10-16T23:05:27.6213180Z ##[debug]Starting: Complete job
2023-10-16T23:05:27.6215644Z Uploading runner diagnostic logs
2023-10-16T23:05:27.6281337Z ##[debug]Starting diagnostic file upload.
2023-10-16T23:05:27.6281884Z ##[debug]Setting up diagnostic log folders.
2023-10-16T23:05:27.6284756Z ##[debug]Creating diagnostic log files folder.
2023-10-16T23:05:27.6309630Z ##[debug]Copying 1 worker diagnostic logs.
2023-10-16T23:05:27.6331006Z ##[debug]Copying 1 runner diagnostic logs.
2023-10-16T23:05:27.6332610Z ##[debug]Zipping diagnostic files.
2023-10-16T23:05:27.6395396Z ##[debug]Uploading diagnostic metadata file.
2023-10-16T23:05:27.6423635Z ##[debug]Diagnostic file upload complete.
2023-10-16T23:05:27.6425674Z Completed runner diagnostic log upload
2023-10-16T23:05:27.6426223Z Cleaning up orphan processes
2023-10-16T23:05:27.6912789Z ##[debug]Finishing: Complete job
2023-10-16T23:05:27.7080836Z ##[debug]Finishing: release-please

And my YAML looks like this:

on:
  push:
    branches:
      - main

permissions:
  contents: write
  pull-requests: write

name: release-please

jobs:
  release-please:
    runs-on: ubuntu-latest
    steps:
      - uses: google-github-actions/release-please-action@v3
        with:
          release-type: node
          token: ${{ secrets.TUI_ACTIONS_SECRET }}

Any suggestions? This was working till very recently. A few more things:

  • We do not cut a tag
  • We manually remove all the hyperlinks from the CHANGELOG.md

Not sure if any of these could be causing issues.

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

No branches or pull requests

4 participants