googleapis / release-please-action

automated releases based on conventional commits
Apache License 2.0
1.61k stars 207 forks source link

settings in release-please-config.json not applied in v4 #941

Closed engeir closed 4 months ago

engeir commented 6 months ago

TL;DR

When using google-github-actions/release-please-action@v4, specifying custom prefixes in release-please-config.json is not working, and instead the action ends in a "No user facing commits found since ... - skipping" message.

Expected behavior

The action would create a PR when commiting with my custom prefixes, for example "chore", and extra files would be updated.

Observed behavior

No PR is made unless commit is "feat" etc., and README, which is specified as an extra file is never updated.

Action YAML

on:
  push:
    branches:
      - main

permissions:
  contents: write
  pull-requests: write

name: release-please

jobs:
  release-please:
    runs-on: ubuntu-latest
    steps:
      - name: Release please
        uses: google-github-actions/release-please-action@v4
        id: release
        with:
          token: ${{ secrets.RELEASE_TOKEN }}
          release-type: python
      - uses: actions/checkout@v4
        if: ${{ steps.release.outputs.release_created }}
      - name: Install and build
        if: ${{ steps.release.outputs.release_created }}
        run: |
          curl https://mise.jdx.dev/install.sh | sh
          echo "$HOME/.local/share/mise/bin">> $GITHUB_PATH
          echo "$HOME/.local/share/mise/shims">> $GITHUB_PATH
          eval "$(mise activate bash)"
          mise install
          mise settings set python_venv_auto_create true
          mise settings set experimental true
          mise run build
      - name: Publish package on TestPyPI
        if: ${{ steps.release.outputs.release_created }}
        uses: pypa/gh-action-pypi-publish@v1.8.11
        with:
          user: __token__
          password: ${{ secrets.TEST_PYPI_TOKEN }}
          repository-url: https://test.pypi.org/legacy/
      - name: Publish package on PyPI
        if: ${{ steps.release.outputs.release_created }}
        uses: pypa/gh-action-pypi-publish@v1.8.11
        with:
          user: __token__
          password: ${{ secrets.PYPI_TOKEN }}

Log output

https://github.com/engeir/volcano-base/actions/runs/7886140126/job/21518772262

2024-02-13T12:01:53.2519044Z Requested labels: ubuntu-latest
2024-02-13T12:01:53.2519495Z Job defined at: engeir/volcano-base/.github/workflows/release.yml@refs/heads/main
2024-02-13T12:01:53.2519664Z Waiting for a runner to pick up this job...
2024-02-13T12:01:53.6291332Z Job is waiting for a hosted runner to come online.
2024-02-13T12:01:56.8430701Z Job is about to start running on the hosted runner: GitHub Actions 22 (hosted)
2024-02-13T12:01:58.5781969Z Current runner version: '2.312.0'
2024-02-13T12:01:58.5805309Z ##[group]Operating System
2024-02-13T12:01:58.5805906Z Ubuntu
2024-02-13T12:01:58.5806414Z 22.04.3
2024-02-13T12:01:58.5806747Z LTS
2024-02-13T12:01:58.5807175Z ##[endgroup]
2024-02-13T12:01:58.5807566Z ##[group]Runner Image
2024-02-13T12:01:58.5807999Z Image: ubuntu-22.04
2024-02-13T12:01:58.5808522Z Version: 20240212.1.0
2024-02-13T12:01:58.5809480Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240212.1/images/ubuntu/Ubuntu2204-Readme.md
2024-02-13T12:01:58.5810937Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240212.1
2024-02-13T12:01:58.5811875Z ##[endgroup]
2024-02-13T12:01:58.5812274Z ##[group]Runner Image Provisioner
2024-02-13T12:01:58.5812780Z 2.0.341.1
2024-02-13T12:01:58.5813187Z ##[endgroup]
2024-02-13T12:01:58.5814205Z ##[group]GITHUB_TOKEN Permissions
2024-02-13T12:01:58.5815826Z Contents: write
2024-02-13T12:01:58.5816469Z Metadata: read
2024-02-13T12:01:58.5817205Z PullRequests: write
2024-02-13T12:01:58.5817722Z ##[endgroup]
2024-02-13T12:01:58.5820766Z Secret source: Actions
2024-02-13T12:01:58.5821379Z Prepare workflow directory
2024-02-13T12:01:58.6438147Z Prepare all required actions
2024-02-13T12:01:58.6594407Z Getting action download info
2024-02-13T12:01:58.8837325Z Download action repository 'google-github-actions/release-please-action@v4' (SHA:cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e)
2024-02-13T12:01:59.2789020Z Download action repository 'actions/checkout@v4' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11)
2024-02-13T12:01:59.3470039Z Download action repository 'pypa/gh-action-pypi-publish@v1.8.11' (SHA:2f6f737ca5f74c637829c0f5c3acd0e29ea5e8bf)
2024-02-13T12:01:59.6482043Z Complete job name: release-please
2024-02-13T12:01:59.7118828Z ##[group]Build container for action use: '/home/runner/work/_actions/pypa/gh-action-pypi-publish/v1.8.11/Dockerfile'.
2024-02-13T12:01:59.7206314Z ##[command]/usr/bin/docker build -t a3eb58:117aba8fb40c4eafb91f1c16669e0dbc -f "/home/runner/work/_actions/pypa/gh-action-pypi-publish/v1.8.11/Dockerfile" "/home/runner/work/_actions/pypa/gh-action-pypi-publish/v1.8.11"
2024-02-13T12:02:24.1261611Z #0 building with "default" instance using docker driver
2024-02-13T12:02:24.1264418Z 
2024-02-13T12:02:24.1264733Z #1 [internal] load .dockerignore
2024-02-13T12:02:24.1265436Z #1 transferring context: 2B done
2024-02-13T12:02:24.1266860Z #1 DONE 0.0s
2024-02-13T12:02:24.1267198Z 
2024-02-13T12:02:24.1267507Z #2 [internal] load build definition from Dockerfile
2024-02-13T12:02:24.1268696Z #2 transferring dockerfile: 978B done
2024-02-13T12:02:24.1269446Z #2 DONE 0.0s
2024-02-13T12:02:24.1269721Z 
2024-02-13T12:02:24.1270463Z #3 [auth] library/python:pull token for registry-1.docker.io
2024-02-13T12:02:24.1271456Z #3 DONE 0.0s
2024-02-13T12:02:24.1271786Z 
2024-02-13T12:02:24.1272203Z #4 [internal] load metadata for docker.io/library/python:3.11-slim
2024-02-13T12:02:24.3763446Z #4 DONE 0.5s
2024-02-13T12:02:24.4920786Z 
2024-02-13T12:02:24.4921518Z #5 [internal] load build context
2024-02-13T12:02:24.4922446Z #5 transferring context: 17.79kB done
2024-02-13T12:02:24.4924347Z #5 DONE 0.0s
2024-02-13T12:02:24.4924637Z 
2024-02-13T12:02:24.4925469Z #6 [1/9] FROM docker.io/library/python:3.11-slim@sha256:0b7568850e62c6405d15098486b8fc23d9d6a845b112b866aceaf65fbded2fc1
2024-02-13T12:02:24.4927443Z #6 resolve docker.io/library/python:3.11-slim@sha256:0b7568850e62c6405d15098486b8fc23d9d6a845b112b866aceaf65fbded2fc1 done
2024-02-13T12:02:24.4929308Z #6 sha256:e01f643d06c00f7e43572922f769fda91f735b8492a7dc839fc76439e5470ae3 6.93kB / 6.93kB done
2024-02-13T12:02:24.4931329Z #6 sha256:e1caac4eb9d2ec24aa3618e5992208321a92492aef5fef5eb9e470895f771c56 8.39MB / 29.12MB 0.1s
2024-02-13T12:02:24.4932993Z #6 sha256:51d1f07906b71fd60ac43c61035514996a8ad8dbfd39d4f570ac5446b064ee5d 2.10MB / 3.51MB 0.1s
2024-02-13T12:02:24.4934717Z #6 sha256:fe87ad6b112e2dfaa9a52f49adf5bb70a80d9af2c737f71a947cb5017a12b148 3.19MB / 12.87MB 0.1s
2024-02-13T12:02:24.4936615Z #6 sha256:0b7568850e62c6405d15098486b8fc23d9d6a845b112b866aceaf65fbded2fc1 1.65kB / 1.65kB done
2024-02-13T12:02:24.4940293Z #6 sha256:6459da0f052d819e59b5329bb8f76b2f2bd16427ce6fd4db91e11b3759850380 1.37kB / 1.37kB done
2024-02-13T12:02:24.6879583Z #6 sha256:e1caac4eb9d2ec24aa3618e5992208321a92492aef5fef5eb9e470895f771c56 24.12MB / 29.12MB 0.3s
2024-02-13T12:02:24.6881324Z #6 sha256:51d1f07906b71fd60ac43c61035514996a8ad8dbfd39d4f570ac5446b064ee5d 3.51MB / 3.51MB 0.1s done
2024-02-13T12:02:24.6882450Z #6 sha256:fe87ad6b112e2dfaa9a52f49adf5bb70a80d9af2c737f71a947cb5017a12b148 12.87MB / 12.87MB 0.2s done
2024-02-13T12:02:24.6883501Z #6 sha256:4d8ccb72bbadfe34ab482a41ca4c7c07b97dfa2e523cb6317b4ff5948244765b 244B / 244B 0.2s done
2024-02-13T12:02:24.6884654Z #6 sha256:8100581c78ddcf0a8c7cb0eb6b3028d3045eaf4f34d4704ae6c72ed0b3f5714a 3.41MB / 3.41MB 0.2s done
2024-02-13T12:02:24.8898056Z #6 sha256:e1caac4eb9d2ec24aa3618e5992208321a92492aef5fef5eb9e470895f771c56 29.12MB / 29.12MB 0.4s done
2024-02-13T12:02:24.8900008Z #6 extracting sha256:e1caac4eb9d2ec24aa3618e5992208321a92492aef5fef5eb9e470895f771c56 0.1s
2024-02-13T12:02:25.8748694Z #6 extracting sha256:e1caac4eb9d2ec24aa3618e5992208321a92492aef5fef5eb9e470895f771c56 1.1s done
2024-02-13T12:02:25.8750320Z #6 extracting sha256:51d1f07906b71fd60ac43c61035514996a8ad8dbfd39d4f570ac5446b064ee5d
2024-02-13T12:02:26.1315232Z #6 extracting sha256:51d1f07906b71fd60ac43c61035514996a8ad8dbfd39d4f570ac5446b064ee5d 0.1s done
2024-02-13T12:02:26.1317265Z #6 extracting sha256:fe87ad6b112e2dfaa9a52f49adf5bb70a80d9af2c737f71a947cb5017a12b148
2024-02-13T12:02:26.6505238Z #6 extracting sha256:fe87ad6b112e2dfaa9a52f49adf5bb70a80d9af2c737f71a947cb5017a12b148 0.4s done
2024-02-13T12:02:26.6506925Z #6 extracting sha256:4d8ccb72bbadfe34ab482a41ca4c7c07b97dfa2e523cb6317b4ff5948244765b done
2024-02-13T12:02:26.6508149Z #6 extracting sha256:8100581c78ddcf0a8c7cb0eb6b3028d3045eaf4f34d4704ae6c72ed0b3f5714a
2024-02-13T12:02:26.9599868Z #6 extracting sha256:8100581c78ddcf0a8c7cb0eb6b3028d3045eaf4f34d4704ae6c72ed0b3f5714a 0.3s done
2024-02-13T12:02:26.9601132Z #6 DONE 2.6s
2024-02-13T12:02:27.1247659Z 
2024-02-13T12:02:27.1249782Z #7 [2/9] COPY requirements requirements
2024-02-13T12:02:27.1250562Z #7 DONE 0.0s
2024-02-13T12:02:27.1251141Z 
2024-02-13T12:02:27.1253254Z #8 [3/9] RUN   PIP_CONSTRAINT=requirements/runtime-prerequisites.txt     pip install --user --upgrade --no-cache-dir       -r requirements/runtime-prerequisites.in &&   PIP_CONSTRAINT=requirements/runtime.txt     pip install --user --upgrade --no-cache-dir --prefer-binary       -r requirements/runtime.in
2024-02-13T12:02:28.3519244Z #8 1.377 Collecting pip-with-requires-python (from -r requirements/runtime-prerequisites.in (line 1))
2024-02-13T12:02:28.4755523Z #8 1.410   Downloading pip_with_requires_python-1.0.1-py2.py3-none-any.whl (2.3 kB)
2024-02-13T12:02:28.4757267Z #8 1.463 Collecting pip>=21 (from pip-with-requires-python->-r requirements/runtime-prerequisites.in (line 1))
2024-02-13T12:02:28.4758949Z #8 1.468   Downloading pip-23.3-py3-none-any.whl.metadata (3.5 kB)
2024-02-13T12:02:28.4759698Z #8 1.475 Downloading pip-23.3-py3-none-any.whl (2.1 MB)
2024-02-13T12:02:28.6675525Z #8 1.501    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 88.6 MB/s eta 0:00:00
2024-02-13T12:02:28.6676367Z #8 1.543 Installing collected packages: pip, pip-with-requires-python
2024-02-13T12:02:29.4589769Z #8 2.484 Successfully installed pip-23.3 pip-with-requires-python-1.0.1
2024-02-13T12:02:29.6886912Z #8 2.564 
2024-02-13T12:02:29.6887811Z #8 2.564 [notice] A new release of pip is available: 23.3 -> 24.0
2024-02-13T12:02:29.6889052Z #8 2.564 [notice] To update, run: python -m pip install --upgrade pip
2024-02-13T12:02:30.3611804Z #8 3.386 Collecting twine (from -r requirements/runtime.in (line 1))
2024-02-13T12:02:30.4723541Z #8 3.441   Downloading twine-4.0.2-py3-none-any.whl (36 kB)
2024-02-13T12:02:30.4725047Z #8 3.461 Collecting id~=1.0 (from -r requirements/runtime.in (line 4))
2024-02-13T12:02:30.4725970Z #8 3.466   Downloading id-1.0.0-py3-none-any.whl (11 kB)
2024-02-13T12:02:30.4727199Z #8 3.498 Collecting requests (from -r requirements/runtime.in (line 9))
2024-02-13T12:02:30.5887471Z #8 3.501   Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)
2024-02-13T12:02:30.5889153Z #8 3.524 Collecting pkginfo>=1.8.1 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.5893781Z #8 3.527   Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)
2024-02-13T12:02:30.5895053Z #8 3.546 Collecting readme-renderer>=35.0 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.5896794Z #8 3.550   Downloading readme_renderer-40.0-py3-none-any.whl.metadata (2.7 kB)
2024-02-13T12:02:30.5897951Z #8 3.570 Collecting requests-toolbelt!=0.9.0,>=0.8.0 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.5898942Z #8 3.573   Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)
2024-02-13T12:02:30.5899986Z #8 3.576      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.5/54.5 kB 55.5 MB/s eta 0:00:00
2024-02-13T12:02:30.5900861Z #8 3.614 Collecting urllib3>=1.26.0 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.6886150Z #8 3.619   Downloading urllib3-2.0.7-py3-none-any.whl.metadata (6.6 kB)
2024-02-13T12:02:30.6887828Z #8 3.669 Collecting importlib-metadata>=3.6 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.6889593Z #8 3.672   Downloading importlib_metadata-6.8.0-py3-none-any.whl.metadata (5.1 kB)
2024-02-13T12:02:30.6890736Z #8 3.714 Collecting keyring>=15.1 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.8940820Z #8 3.719   Downloading keyring-24.2.0-py3-none-any.whl.metadata (20 kB)
2024-02-13T12:02:30.8941856Z #8 3.739 Collecting rfc3986>=1.4.0 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.8943142Z #8 3.744   Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)
2024-02-13T12:02:30.8944273Z #8 3.806 Collecting rich>=12.0.0 (from twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:30.8945261Z #8 3.810   Downloading rich-13.4.2-py3-none-any.whl.metadata (18 kB)
2024-02-13T12:02:30.8946116Z #8 3.919 Collecting pydantic (from id~=1.0->-r requirements/runtime.in (line 4))
2024-02-13T12:02:30.9959133Z #8 3.925   Downloading pydantic-2.0.2-py3-none-any.whl.metadata (119 kB)
2024-02-13T12:02:30.9960653Z #8 3.927      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 120.0/120.0 kB 254.8 MB/s eta 0:00:00
2024-02-13T12:02:30.9962657Z #8 3.998 Collecting charset-normalizer<4,>=2 (from requests->-r requirements/runtime.in (line 9))
2024-02-13T12:02:30.9964974Z #8 4.003   Downloading charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB)
2024-02-13T12:02:30.9966536Z #8 4.021 Collecting idna<4,>=2.5 (from requests->-r requirements/runtime.in (line 9))
2024-02-13T12:02:31.1289547Z #8 4.024   Downloading idna-3.4-py3-none-any.whl (61 kB)
2024-02-13T12:02:31.1290758Z #8 4.026      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.5/61.5 kB 240.8 MB/s eta 0:00:00
2024-02-13T12:02:31.1291917Z #8 4.051 Collecting certifi>=2017.4.17 (from requests->-r requirements/runtime.in (line 9))
2024-02-13T12:02:31.1292981Z #8 4.054   Downloading certifi-2023.7.22-py3-none-any.whl.metadata (2.2 kB)
2024-02-13T12:02:31.1294020Z #8 4.093 Collecting zipp>=0.5 (from importlib-metadata>=3.6->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.1295267Z #8 4.110   Downloading zipp-3.16.0-py3-none-any.whl.metadata (3.7 kB)
2024-02-13T12:02:31.1296629Z #8 4.154 Collecting jaraco.classes (from keyring>=15.1->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.2384976Z #8 4.158   Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)
2024-02-13T12:02:31.2386638Z #8 4.180 Collecting SecretStorage>=3.2 (from keyring>=15.1->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.2388185Z #8 4.184   Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)
2024-02-13T12:02:31.2389831Z #8 4.198 Collecting jeepney>=0.4.2 (from keyring>=15.1->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.2391543Z #8 4.201   Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)
2024-02-13T12:02:31.2392914Z #8 4.203      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.4/48.4 kB 239.2 MB/s eta 0:00:00
2024-02-13T12:02:31.2394041Z #8 4.233 Collecting bleach>=2.1.0 (from readme-renderer>=35.0->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.2394875Z #8 4.242   Downloading bleach-6.0.0-py3-none-any.whl (162 kB)
2024-02-13T12:02:31.2395618Z #8 4.244      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 162.5/162.5 kB 251.6 MB/s eta 0:00:00
2024-02-13T12:02:31.2396459Z #8 4.264 Collecting docutils>=0.13.1 (from readme-renderer>=35.0->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.3505669Z #8 4.268   Downloading docutils-0.20.1-py3-none-any.whl.metadata (2.8 kB)
2024-02-13T12:02:31.3507531Z #8 4.293 Collecting Pygments>=2.5.1 (from readme-renderer>=35.0->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.3509097Z #8 4.297   Downloading Pygments-2.15.1-py3-none-any.whl (1.1 MB)
2024-02-13T12:02:31.3510339Z #8 4.305      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 172.8 MB/s eta 0:00:00
2024-02-13T12:02:31.3511995Z #8 4.343 Collecting markdown-it-py>=2.2.0 (from rich>=12.0.0->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.3513636Z #8 4.347   Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)
2024-02-13T12:02:31.3515013Z #8 4.376 Collecting annotated-types>=0.4.0 (from pydantic->id~=1.0->-r requirements/runtime.in (line 4))
2024-02-13T12:02:31.5087568Z #8 4.384   Downloading annotated_types-0.5.0-py3-none-any.whl.metadata (11 kB)
2024-02-13T12:02:31.7999549Z #8 4.825 Collecting pydantic-core==2.1.2 (from pydantic->id~=1.0->-r requirements/runtime.in (line 4))
2024-02-13T12:02:31.9092051Z #8 4.830   Downloading pydantic_core-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.1 kB)
2024-02-13T12:02:31.9094010Z #8 4.849 Collecting typing-extensions>=4.6.1 (from pydantic->id~=1.0->-r requirements/runtime.in (line 4))
2024-02-13T12:02:31.9095721Z #8 4.852   Downloading typing_extensions-4.7.1-py3-none-any.whl.metadata (3.1 kB)
2024-02-13T12:02:31.9097886Z #8 4.881 Collecting six>=1.9.0 (from bleach>=2.1.0->readme-renderer>=35.0->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.9099446Z #8 4.884   Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)
2024-02-13T12:02:31.9100482Z #8 4.894 Collecting webencodings (from bleach>=2.1.0->readme-renderer>=35.0->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:31.9101392Z #8 4.897   Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB)
2024-02-13T12:02:31.9102337Z #8 4.935 Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=12.0.0->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:32.0629449Z #8 4.938   Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)
2024-02-13T12:02:32.0691252Z #8 5.095 Collecting cryptography>=2.0 (from SecretStorage>=3.2->keyring>=15.1->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:32.2405061Z #8 5.099   Downloading cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)
2024-02-13T12:02:32.2410079Z #8 5.149 Collecting more-itertools (from jaraco.classes->keyring>=15.1->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:32.2411376Z #8 5.152   Downloading more_itertools-9.1.0-py3-none-any.whl (54 kB)
2024-02-13T12:02:32.2412179Z #8 5.154      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.2/54.2 kB 229.1 MB/s eta 0:00:00
2024-02-13T12:02:32.2413242Z #8 5.266 Collecting cffi>=1.12 (from cryptography>=2.0->SecretStorage>=3.2->keyring>=15.1->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:32.3444959Z #8 5.272   Downloading cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462 kB)
2024-02-13T12:02:32.3446453Z #8 5.276      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 462.6/462.6 kB 200.9 MB/s eta 0:00:00
2024-02-13T12:02:32.3447741Z #8 5.338 Collecting pycparser (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring>=15.1->twine->-r requirements/runtime.in (line 1))
2024-02-13T12:02:32.3449311Z #8 5.341   Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)
2024-02-13T12:02:32.3449998Z #8 5.343      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 118.7/118.7 kB 263.4 MB/s eta 0:00:00
2024-02-13T12:02:32.3450981Z #8 5.355 Downloading requests-2.31.0-py3-none-any.whl (62 kB)
2024-02-13T12:02:32.3451757Z #8 5.357    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.6/62.6 kB 243.8 MB/s eta 0:00:00
2024-02-13T12:02:32.3452473Z #8 5.360 Downloading certifi-2023.7.22-py3-none-any.whl (158 kB)
2024-02-13T12:02:32.3453218Z #8 5.362    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 158.3/158.3 kB 264.4 MB/s eta 0:00:00
2024-02-13T12:02:32.3454156Z #8 5.370 Downloading charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (199 kB)
2024-02-13T12:02:32.4567950Z #8 5.373    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 199.6/199.6 kB 228.9 MB/s eta 0:00:00
2024-02-13T12:02:32.4569206Z #8 5.376 Downloading importlib_metadata-6.8.0-py3-none-any.whl (22 kB)
2024-02-13T12:02:32.4571499Z #8 5.381 Downloading keyring-24.2.0-py3-none-any.whl (37 kB)
2024-02-13T12:02:32.4572595Z #8 5.385 Downloading readme_renderer-40.0-py3-none-any.whl (14 kB)
2024-02-13T12:02:32.4573826Z #8 5.390 Downloading rich-13.4.2-py3-none-any.whl (239 kB)
2024-02-13T12:02:32.4574738Z #8 5.392    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 239.4/239.4 kB 285.1 MB/s eta 0:00:00
2024-02-13T12:02:32.4575434Z #8 5.396 Downloading urllib3-2.0.7-py3-none-any.whl (124 kB)
2024-02-13T12:02:32.4576536Z #8 5.398    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 124.2/124.2 kB 256.5 MB/s eta 0:00:00
2024-02-13T12:02:32.4577230Z #8 5.403 Downloading pydantic-2.0.2-py3-none-any.whl (359 kB)
2024-02-13T12:02:32.4578108Z #8 5.406    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 359.1/359.1 kB 278.9 MB/s eta 0:00:00
2024-02-13T12:02:32.4579087Z #8 5.412 Downloading pydantic_core-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB)
2024-02-13T12:02:32.4579934Z #8 5.422    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 202.5 MB/s eta 0:00:00
2024-02-13T12:02:32.4580645Z #8 5.427 Downloading annotated_types-0.5.0-py3-none-any.whl (11 kB)
2024-02-13T12:02:32.4581369Z #8 5.432 Downloading docutils-0.20.1-py3-none-any.whl (572 kB)
2024-02-13T12:02:32.4581982Z #8 5.436    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 572.7/572.7 kB 269.4 MB/s eta 0:00:00
2024-02-13T12:02:32.4582697Z #8 5.439 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)
2024-02-13T12:02:32.4583430Z #8 5.441    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.5/87.5 kB 256.1 MB/s eta 0:00:00
2024-02-13T12:02:32.4584140Z #8 5.444 Downloading typing_extensions-4.7.1-py3-none-any.whl (33 kB)
2024-02-13T12:02:32.4584851Z #8 5.449 Downloading zipp-3.16.0-py3-none-any.whl (6.7 kB)
2024-02-13T12:02:32.4585519Z #8 5.452 Downloading jaraco.classes-3.3.0-py3-none-any.whl (5.9 kB)
2024-02-13T12:02:32.4586299Z #8 5.459 Downloading cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl (4.4 MB)
2024-02-13T12:02:32.6071873Z #8 5.482    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.4/4.4 MB 206.6 MB/s eta 0:00:00
2024-02-13T12:02:32.6407746Z #8 5.666 Installing collected packages: webencodings, zipp, urllib3, typing-extensions, six, rfc3986, Pygments, pycparser, pkginfo, more-itertools, mdurl, jeepney, idna, docutils, charset-normalizer, certifi, annotated-types, requests, pydantic-core, markdown-it-py, jaraco.classes, importlib-metadata, cffi, bleach, rich, requests-toolbelt, readme-renderer, pydantic, cryptography, SecretStorage, id, keyring, twine
2024-02-13T12:02:34.8689115Z #8 7.894 Successfully installed Pygments-2.15.1 SecretStorage-3.3.3 annotated-types-0.5.0 bleach-6.0.0 certifi-2023.7.22 cffi-1.15.1 charset-normalizer-3.2.0 cryptography-41.0.6 docutils-0.20.1 id-1.0.0 idna-3.4 importlib-metadata-6.8.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.2.0 markdown-it-py-3.0.0 mdurl-0.1.2 more-itertools-9.1.0 pkginfo-1.9.6 pycparser-2.21 pydantic-2.0.2 pydantic-core-2.1.2 readme-renderer-40.0 requests-2.31.0 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.4.2 six-1.16.0 twine-4.0.2 typing-extensions-4.7.1 urllib3-2.0.7 webencodings-0.5.1 zipp-3.16.0
2024-02-13T12:02:34.9813871Z #8 8.007 
2024-02-13T12:02:34.9814632Z #8 8.007 [notice] A new release of pip is available: 23.3 -> 24.0
2024-02-13T12:02:34.9816156Z #8 8.007 [notice] To update, run: python -m pip install --upgrade pip
2024-02-13T12:02:35.2073343Z #8 DONE 8.2s
2024-02-13T12:02:35.4318427Z 
2024-02-13T12:02:35.4318975Z #9 [4/9] WORKDIR /app
2024-02-13T12:02:35.4319593Z #9 DONE 0.0s
2024-02-13T12:02:35.4320030Z 
2024-02-13T12:02:35.4320252Z #10 [5/9] COPY LICENSE.md .
2024-02-13T12:02:35.4320901Z #10 DONE 0.0s
2024-02-13T12:02:35.4321316Z 
2024-02-13T12:02:35.4321595Z #11 [6/9] COPY twine-upload.sh .
2024-02-13T12:02:35.4322532Z #11 DONE 0.0s
2024-02-13T12:02:35.4322927Z 
2024-02-13T12:02:35.4323547Z #12 [7/9] COPY print-hash.py .
2024-02-13T12:02:35.4324337Z #12 DONE 0.0s
2024-02-13T12:02:35.4324557Z 
2024-02-13T12:02:35.4324771Z #13 [8/9] COPY oidc-exchange.py .
2024-02-13T12:02:35.4325264Z #13 DONE 0.0s
2024-02-13T12:02:35.4325514Z 
2024-02-13T12:02:35.4325788Z #14 [9/9] RUN chmod +x twine-upload.sh
2024-02-13T12:02:35.4675109Z #14 DONE 0.2s
2024-02-13T12:02:35.6187253Z 
2024-02-13T12:02:35.6187911Z #15 exporting to image
2024-02-13T12:02:35.6188840Z #15 exporting layers
2024-02-13T12:02:36.9399617Z #15 exporting layers 1.5s done
2024-02-13T12:02:36.9531459Z #15 writing image sha256:30c96a11d4fcb3d91c2e3c3f3b875adaab623fa39146e96a04215760da5fe937 done
2024-02-13T12:02:36.9533106Z #15 naming to docker.io/library/a3eb58:117aba8fb40c4eafb91f1c16669e0dbc done
2024-02-13T12:02:36.9534448Z #15 DONE 1.5s
2024-02-13T12:02:36.9588996Z ##[endgroup]
2024-02-13T12:02:36.9972370Z ##[group]Run google-github-actions/release-please-action@v4
2024-02-13T12:02:36.9973166Z with:
2024-02-13T12:02:36.9973781Z   token: ***
2024-02-13T12:02:36.9974248Z   release-type: python
2024-02-13T12:02:36.9974614Z   repo-url: engeir/volcano-base
2024-02-13T12:02:36.9975063Z   github-api-url: https://api.github.com
2024-02-13T12:02:36.9975698Z   github-graphql-url: https://api.github.com/graphql
2024-02-13T12:02:36.9976575Z   fork: false
2024-02-13T12:02:36.9976949Z   include-component-in-tag: false
2024-02-13T12:02:36.9977455Z   skip-github-release: false
2024-02-13T12:02:36.9977914Z   skip-github-pull-request: false
2024-02-13T12:02:36.9978307Z ##[endgroup]
2024-02-13T12:02:40.1471077Z Running release-please version: 16.5.0
2024-02-13T12:02:40.9577401Z ✔ Looking for latest release on branch: main with prefix: 
2024-02-13T12:02:40.9578773Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-02-13T12:02:41.8192893Z ❯ Found latest release pull request: 43 version: 0.7.1
2024-02-13T12:02:41.8194073Z ❯ Fetching releases with cursor undefined
2024-02-13T12:02:42.0638493Z ❯ found release for  Version {
2024-02-13T12:02:42.0639228Z   major: 0,
2024-02-13T12:02:42.0640036Z   minor: 7,
2024-02-13T12:02:42.0640602Z   patch: 1,
2024-02-13T12:02:42.0641349Z   preRelease: undefined,
2024-02-13T12:02:42.0642084Z   build: undefined
2024-02-13T12:02:42.0642657Z }
2024-02-13T12:02:42.0643923Z ❯ found release for  Version {
2024-02-13T12:02:42.0644654Z   major: 0,
2024-02-13T12:02:42.0645201Z   minor: 7,
2024-02-13T12:02:42.0645977Z   patch: 0,
2024-02-13T12:02:42.0646570Z   preRelease: undefined,
2024-02-13T12:02:42.0647275Z   build: undefined
2024-02-13T12:02:42.0647996Z }
2024-02-13T12:02:42.0648965Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0649993Z ❯ found release for  Version {
2024-02-13T12:02:42.0650826Z   major: 0,
2024-02-13T12:02:42.0651382Z   minor: 6,
2024-02-13T12:02:42.0652121Z   patch: 1,
2024-02-13T12:02:42.0652747Z   preRelease: undefined,
2024-02-13T12:02:42.0653454Z   build: undefined
2024-02-13T12:02:42.0654133Z }
2024-02-13T12:02:42.0654969Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0656255Z ❯ found release for  Version {
2024-02-13T12:02:42.0657129Z   major: 0,
2024-02-13T12:02:42.0657724Z   minor: 6,
2024-02-13T12:02:42.0658434Z   patch: 0,
2024-02-13T12:02:42.0659062Z   preRelease: undefined,
2024-02-13T12:02:42.0659731Z   build: undefined
2024-02-13T12:02:42.0660467Z }
2024-02-13T12:02:42.0661350Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0662442Z ❯ found release for  Version {
2024-02-13T12:02:42.0663305Z   major: 0,
2024-02-13T12:02:42.0663871Z   minor: 5,
2024-02-13T12:02:42.0664580Z   patch: 0,
2024-02-13T12:02:42.0665146Z   preRelease: undefined,
2024-02-13T12:02:42.0665849Z   build: undefined
2024-02-13T12:02:42.0666578Z }
2024-02-13T12:02:42.0667433Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0668552Z ❯ found release for  Version {
2024-02-13T12:02:42.0669420Z   major: 0,
2024-02-13T12:02:42.0670000Z   minor: 4,
2024-02-13T12:02:42.0670451Z   patch: 0,
2024-02-13T12:02:42.0671106Z   preRelease: undefined,
2024-02-13T12:02:42.0671794Z   build: undefined
2024-02-13T12:02:42.0672585Z }
2024-02-13T12:02:42.0673453Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0674599Z ❯ found release for  Version {
2024-02-13T12:02:42.0675491Z   major: 0,
2024-02-13T12:02:42.0676062Z   minor: 3,
2024-02-13T12:02:42.0676686Z   patch: 3,
2024-02-13T12:02:42.0677391Z   preRelease: undefined,
2024-02-13T12:02:42.0677978Z   build: undefined
2024-02-13T12:02:42.0678508Z }
2024-02-13T12:02:42.0679496Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0680545Z ❯ found release for  Version {
2024-02-13T12:02:42.0681376Z   major: 0,
2024-02-13T12:02:42.0681921Z   minor: 3,
2024-02-13T12:02:42.0682391Z   patch: 2,
2024-02-13T12:02:42.0683105Z   preRelease: undefined,
2024-02-13T12:02:42.0684186Z   build: undefined
2024-02-13T12:02:42.0684805Z }
2024-02-13T12:02:42.0685833Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0686968Z ❯ found release for  Version {
2024-02-13T12:02:42.0687724Z   major: 0,
2024-02-13T12:02:42.0688431Z   minor: 3,
2024-02-13T12:02:42.0688982Z   patch: 1,
2024-02-13T12:02:42.0689582Z   preRelease: undefined,
2024-02-13T12:02:42.0690406Z   build: undefined
2024-02-13T12:02:42.0690968Z }
2024-02-13T12:02:42.0691962Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0692985Z ❯ found release for  Version {
2024-02-13T12:02:42.0693653Z   major: 0,
2024-02-13T12:02:42.0694361Z   minor: 3,
2024-02-13T12:02:42.0694943Z   patch: 0,
2024-02-13T12:02:42.0695584Z   preRelease: undefined,
2024-02-13T12:02:42.0696661Z   build: undefined
2024-02-13T12:02:42.0697260Z }
2024-02-13T12:02:42.0698068Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0699197Z ❯ found release for  Version {
2024-02-13T12:02:42.0699949Z   major: 0,
2024-02-13T12:02:42.0700478Z   minor: 2,
2024-02-13T12:02:42.0701159Z   patch: 12,
2024-02-13T12:02:42.0701761Z   preRelease: undefined,
2024-02-13T12:02:42.0702346Z   build: undefined
2024-02-13T12:02:42.0703045Z }
2024-02-13T12:02:42.0703902Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0705076Z ❯ found release for  Version {
2024-02-13T12:02:42.0706082Z   major: 0,
2024-02-13T12:02:42.0706686Z   minor: 2,
2024-02-13T12:02:42.0707314Z   patch: 11,
2024-02-13T12:02:42.0707811Z   preRelease: undefined,
2024-02-13T12:02:42.0708412Z   build: undefined
2024-02-13T12:02:42.0709181Z }
2024-02-13T12:02:42.0709974Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0710907Z ❯ found release for  Version {
2024-02-13T12:02:42.0711647Z   major: 0,
2024-02-13T12:02:42.0712177Z   minor: 2,
2024-02-13T12:02:42.0712798Z   patch: 10,
2024-02-13T12:02:42.0713292Z   preRelease: undefined,
2024-02-13T12:02:42.0713877Z   build: undefined
2024-02-13T12:02:42.0714512Z }
2024-02-13T12:02:42.0715243Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0716063Z ❯ found release for  Version {
2024-02-13T12:02:42.0716785Z   major: 0,
2024-02-13T12:02:42.0717254Z   minor: 2,
2024-02-13T12:02:42.0717697Z   patch: 9,
2024-02-13T12:02:42.0718299Z   preRelease: undefined,
2024-02-13T12:02:42.0718886Z   build: undefined
2024-02-13T12:02:42.0719411Z }
2024-02-13T12:02:42.0720238Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0721158Z ❯ found release for  Version {
2024-02-13T12:02:42.0721727Z   major: 0,
2024-02-13T12:02:42.0722308Z   minor: 2,
2024-02-13T12:02:42.0722790Z   patch: 8,
2024-02-13T12:02:42.0723361Z   preRelease: undefined,
2024-02-13T12:02:42.0723926Z   build: undefined
2024-02-13T12:02:42.0724449Z }
2024-02-13T12:02:42.0725299Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0726258Z ❯ found release for  Version {
2024-02-13T12:02:42.0726869Z   major: 0,
2024-02-13T12:02:42.0727441Z   minor: 2,
2024-02-13T12:02:42.0727961Z   patch: 7,
2024-02-13T12:02:42.0728479Z   preRelease: undefined,
2024-02-13T12:02:42.0729211Z   build: undefined
2024-02-13T12:02:42.0729664Z }
2024-02-13T12:02:42.0730375Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0731220Z ❯ found release for  Version {
2024-02-13T12:02:42.0731845Z   major: 0,
2024-02-13T12:02:42.0732428Z   minor: 2,
2024-02-13T12:02:42.0732938Z   patch: 6,
2024-02-13T12:02:42.0733394Z   preRelease: undefined,
2024-02-13T12:02:42.0734091Z   build: undefined
2024-02-13T12:02:42.0734645Z }
2024-02-13T12:02:42.0735260Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0736192Z ❯ found release for  Version {
2024-02-13T12:02:42.0736607Z   major: 0,
2024-02-13T12:02:42.0736913Z   minor: 2,
2024-02-13T12:02:42.0737294Z   patch: 5,
2024-02-13T12:02:42.0737620Z   preRelease: undefined,
2024-02-13T12:02:42.0738006Z   build: undefined
2024-02-13T12:02:42.0738640Z }
2024-02-13T12:02:42.0739126Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0739772Z ❯ found release for  Version {
2024-02-13T12:02:42.0740126Z   major: 0,
2024-02-13T12:02:42.0740446Z   minor: 2,
2024-02-13T12:02:42.0740812Z   patch: 4,
2024-02-13T12:02:42.0741130Z   preRelease: undefined,
2024-02-13T12:02:42.0741508Z   build: undefined
2024-02-13T12:02:42.0741893Z }
2024-02-13T12:02:42.0742348Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0742847Z ❯ found release for  Version {
2024-02-13T12:02:42.0743312Z   major: 0,
2024-02-13T12:02:42.0743629Z   minor: 2,
2024-02-13T12:02:42.0743929Z   patch: 3,
2024-02-13T12:02:42.0744309Z   preRelease: undefined,
2024-02-13T12:02:42.0744693Z   build: undefined
2024-02-13T12:02:42.0744982Z }
2024-02-13T12:02:42.0745488Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0746057Z ❯ found release for  Version {
2024-02-13T12:02:42.0746518Z   major: 0,
2024-02-13T12:02:42.0746848Z   minor: 2,
2024-02-13T12:02:42.0747150Z   patch: 2,
2024-02-13T12:02:42.0747540Z   preRelease: undefined,
2024-02-13T12:02:42.0747884Z   build: undefined
2024-02-13T12:02:42.0748206Z }
2024-02-13T12:02:42.0748731Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0749276Z ❯ found release for  Version {
2024-02-13T12:02:42.0749654Z   major: 0,
2024-02-13T12:02:42.0750217Z   minor: 2,
2024-02-13T12:02:42.0750484Z   patch: 1,
2024-02-13T12:02:42.0750819Z   preRelease: undefined,
2024-02-13T12:02:42.0751243Z   build: undefined
2024-02-13T12:02:42.0751559Z }
2024-02-13T12:02:42.0752093Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0752634Z ❯ found release for  Version {
2024-02-13T12:02:42.0753023Z   major: 0,
2024-02-13T12:02:42.0753350Z   minor: 2,
2024-02-13T12:02:42.0753649Z   patch: 0,
2024-02-13T12:02:42.0753979Z   preRelease: undefined,
2024-02-13T12:02:42.0754399Z   build: undefined
2024-02-13T12:02:42.0754712Z }
2024-02-13T12:02:42.0755186Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0755811Z ❯ found release for  Version {
2024-02-13T12:02:42.0756157Z   major: 0,
2024-02-13T12:02:42.0756485Z   minor: 1,
2024-02-13T12:02:42.0756846Z   patch: 0,
2024-02-13T12:02:42.0757175Z   preRelease: undefined,
2024-02-13T12:02:42.0757611Z   build: undefined
2024-02-13T12:02:42.0757931Z }
2024-02-13T12:02:42.0758354Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:42.0758977Z ❯ found 2 possible releases. [
2024-02-13T12:02:42.0759380Z   Version {
2024-02-13T12:02:42.0759680Z     major: 0,
2024-02-13T12:02:42.0760068Z     minor: 7,
2024-02-13T12:02:42.0760394Z     patch: 1,
2024-02-13T12:02:42.0760736Z     preRelease: undefined,
2024-02-13T12:02:42.0761127Z     build: undefined
2024-02-13T12:02:42.0761473Z   },
2024-02-13T12:02:42.0761762Z   Version {
2024-02-13T12:02:42.0762137Z     major: 0,
2024-02-13T12:02:42.0762443Z     minor: 7,
2024-02-13T12:02:42.0762808Z     patch: 1,
2024-02-13T12:02:42.0763124Z     preRelease: undefined,
2024-02-13T12:02:42.0763491Z     build: undefined
2024-02-13T12:02:42.0763881Z   }
2024-02-13T12:02:42.0764178Z ]
2024-02-13T12:02:42.0765175Z ✔ Building releases
2024-02-13T12:02:42.0765672Z ✔ Building strategies by path
2024-02-13T12:02:42.0766082Z ❯ .: python
2024-02-13T12:02:42.4199740Z ✔ Looking for latest release on branch: main with prefix: 
2024-02-13T12:02:42.4201121Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-02-13T12:02:43.3259393Z ❯ Found latest release pull request: 43 version: 0.7.1
2024-02-13T12:02:43.3260219Z ❯ Fetching releases with cursor undefined
2024-02-13T12:02:43.5060122Z ❯ found release for  Version {
2024-02-13T12:02:43.5060625Z   major: 0,
2024-02-13T12:02:43.5061322Z   minor: 7,
2024-02-13T12:02:43.5061847Z   patch: 1,
2024-02-13T12:02:43.5062392Z   preRelease: undefined,
2024-02-13T12:02:43.5063124Z   build: undefined
2024-02-13T12:02:43.5063643Z }
2024-02-13T12:02:43.5064382Z ❯ found release for  Version {
2024-02-13T12:02:43.5065296Z   major: 0,
2024-02-13T12:02:43.5065880Z   minor: 7,
2024-02-13T12:02:43.5066468Z   patch: 0,
2024-02-13T12:02:43.5066977Z   preRelease: undefined,
2024-02-13T12:02:43.5067655Z   build: undefined
2024-02-13T12:02:43.5068288Z }
2024-02-13T12:02:43.5069051Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5070107Z ❯ found release for  Version {
2024-02-13T12:02:43.5070761Z   major: 0,
2024-02-13T12:02:43.5071265Z   minor: 6,
2024-02-13T12:02:43.5071855Z   patch: 1,
2024-02-13T12:02:43.5072397Z   preRelease: undefined,
2024-02-13T12:02:43.5073097Z   build: undefined
2024-02-13T12:02:43.5073556Z }
2024-02-13T12:02:43.5074306Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5075319Z ❯ found release for  Version {
2024-02-13T12:02:43.5075929Z   major: 0,
2024-02-13T12:02:43.5076428Z   minor: 6,
2024-02-13T12:02:43.5077025Z   patch: 0,
2024-02-13T12:02:43.5077601Z   preRelease: undefined,
2024-02-13T12:02:43.5078145Z   build: undefined
2024-02-13T12:02:43.5078751Z }
2024-02-13T12:02:43.5079548Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5080536Z ❯ found release for  Version {
2024-02-13T12:02:43.5081152Z   major: 0,
2024-02-13T12:02:43.5081645Z   minor: 5,
2024-02-13T12:02:43.5082160Z   patch: 0,
2024-02-13T12:02:43.5082658Z   preRelease: undefined,
2024-02-13T12:02:43.5083201Z   build: undefined
2024-02-13T12:02:43.5084075Z }
2024-02-13T12:02:43.5084869Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5085892Z ❯ found release for  Version {
2024-02-13T12:02:43.5086450Z   major: 0,
2024-02-13T12:02:43.5086729Z   minor: 4,
2024-02-13T12:02:43.5087036Z   patch: 0,
2024-02-13T12:02:43.5087444Z   preRelease: undefined,
2024-02-13T12:02:43.5087813Z   build: undefined
2024-02-13T12:02:43.5088230Z }
2024-02-13T12:02:43.5088692Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5089210Z ❯ found release for  Version {
2024-02-13T12:02:43.5089694Z   major: 0,
2024-02-13T12:02:43.5090003Z   minor: 3,
2024-02-13T12:02:43.5090305Z   patch: 3,
2024-02-13T12:02:43.5090712Z   preRelease: undefined,
2024-02-13T12:02:43.5091078Z   build: undefined
2024-02-13T12:02:43.5091410Z }
2024-02-13T12:02:43.5092002Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5092554Z ❯ found release for  Version {
2024-02-13T12:02:43.5093047Z   major: 0,
2024-02-13T12:02:43.5093333Z   minor: 3,
2024-02-13T12:02:43.5093635Z   patch: 2,
2024-02-13T12:02:43.5094034Z   preRelease: undefined,
2024-02-13T12:02:43.5094434Z   build: undefined
2024-02-13T12:02:43.5094833Z }
2024-02-13T12:02:43.5095362Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5096165Z ❯ found release for  Version {
2024-02-13T12:02:43.5096647Z   major: 0,
2024-02-13T12:02:43.5097046Z   minor: 3,
2024-02-13T12:02:43.5097368Z   patch: 1,
2024-02-13T12:02:43.5097688Z   preRelease: undefined,
2024-02-13T12:02:43.5098116Z   build: undefined
2024-02-13T12:02:43.5098460Z }
2024-02-13T12:02:43.5098884Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5099501Z ❯ found release for  Version {
2024-02-13T12:02:43.5099902Z   major: 0,
2024-02-13T12:02:43.5100343Z   minor: 3,
2024-02-13T12:02:43.5100663Z   patch: 0,
2024-02-13T12:02:43.5100979Z   preRelease: undefined,
2024-02-13T12:02:43.5101414Z   build: undefined
2024-02-13T12:02:43.5101727Z }
2024-02-13T12:02:43.5102164Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5102790Z ❯ found release for  Version {
2024-02-13T12:02:43.5103183Z   major: 0,
2024-02-13T12:02:43.5103481Z   minor: 2,
2024-02-13T12:02:43.5103859Z   patch: 12,
2024-02-13T12:02:43.5104148Z   preRelease: undefined,
2024-02-13T12:02:43.5104512Z   build: undefined
2024-02-13T12:02:43.5104904Z }
2024-02-13T12:02:43.5105386Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5106000Z ❯ found release for  Version {
2024-02-13T12:02:43.5106374Z   major: 0,
2024-02-13T12:02:43.5106856Z   minor: 2,
2024-02-13T12:02:43.5107221Z   patch: 11,
2024-02-13T12:02:43.5107547Z   preRelease: undefined,
2024-02-13T12:02:43.5107918Z   build: undefined
2024-02-13T12:02:43.5108295Z }
2024-02-13T12:02:43.5108727Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5109293Z ❯ found release for  Version {
2024-02-13T12:02:43.5109692Z   major: 0,
2024-02-13T12:02:43.5110001Z   minor: 2,
2024-02-13T12:02:43.5110316Z   patch: 10,
2024-02-13T12:02:43.5110701Z   preRelease: undefined,
2024-02-13T12:02:43.5111071Z   build: undefined
2024-02-13T12:02:43.5111446Z }
2024-02-13T12:02:43.5111883Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5112390Z ❯ found release for  Version {
2024-02-13T12:02:43.5112836Z   major: 0,
2024-02-13T12:02:43.5113135Z   minor: 2,
2024-02-13T12:02:43.5113448Z   patch: 9,
2024-02-13T12:02:43.5113821Z   preRelease: undefined,
2024-02-13T12:02:43.5114190Z   build: undefined
2024-02-13T12:02:43.5114469Z }
2024-02-13T12:02:43.5114969Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5115520Z ❯ found release for  Version {
2024-02-13T12:02:43.5115894Z   major: 0,
2024-02-13T12:02:43.5116276Z   minor: 2,
2024-02-13T12:02:43.5116573Z   patch: 8,
2024-02-13T12:02:43.5116851Z   preRelease: undefined,
2024-02-13T12:02:43.5117289Z   build: undefined
2024-02-13T12:02:43.5117613Z }
2024-02-13T12:02:43.5118301Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5118844Z ❯ found release for  Version {
2024-02-13T12:02:43.5119220Z   major: 0,
2024-02-13T12:02:43.5119597Z   minor: 2,
2024-02-13T12:02:43.5119863Z   patch: 7,
2024-02-13T12:02:43.5120179Z   preRelease: undefined,
2024-02-13T12:02:43.5120615Z   build: undefined
2024-02-13T12:02:43.5120932Z }
2024-02-13T12:02:43.5121376Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5121978Z ❯ found release for  Version {
2024-02-13T12:02:43.5122351Z   major: 0,
2024-02-13T12:02:43.5122751Z   minor: 2,
2024-02-13T12:02:43.5123063Z   patch: 6,
2024-02-13T12:02:43.5123391Z   preRelease: undefined,
2024-02-13T12:02:43.5123773Z   build: undefined
2024-02-13T12:02:43.5124111Z }
2024-02-13T12:02:43.5124565Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5125162Z ❯ found release for  Version {
2024-02-13T12:02:43.5125539Z   major: 0,
2024-02-13T12:02:43.5125853Z   minor: 2,
2024-02-13T12:02:43.5126286Z   patch: 5,
2024-02-13T12:02:43.5126619Z   preRelease: undefined,
2024-02-13T12:02:43.5126974Z   build: undefined
2024-02-13T12:02:43.5127358Z }
2024-02-13T12:02:43.5127806Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5128401Z ❯ found release for  Version {
2024-02-13T12:02:43.5128821Z   major: 0,
2024-02-13T12:02:43.5129085Z   minor: 2,
2024-02-13T12:02:43.5129452Z   patch: 4,
2024-02-13T12:02:43.5129779Z   preRelease: undefined,
2024-02-13T12:02:43.5130143Z   build: undefined
2024-02-13T12:02:43.5130518Z }
2024-02-13T12:02:43.5130977Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5131477Z ❯ found release for  Version {
2024-02-13T12:02:43.5131915Z   major: 0,
2024-02-13T12:02:43.5132232Z   minor: 2,
2024-02-13T12:02:43.5132528Z   patch: 3,
2024-02-13T12:02:43.5132939Z   preRelease: undefined,
2024-02-13T12:02:43.5133304Z   build: undefined
2024-02-13T12:02:43.5133687Z }
2024-02-13T12:02:43.5134106Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5134661Z ❯ found release for  Version {
2024-02-13T12:02:43.5135136Z   major: 0,
2024-02-13T12:02:43.5135440Z   minor: 2,
2024-02-13T12:02:43.5135741Z   patch: 2,
2024-02-13T12:02:43.5136337Z   preRelease: undefined,
2024-02-13T12:02:43.5136666Z   build: undefined
2024-02-13T12:02:43.5136979Z }
2024-02-13T12:02:43.5137509Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5138066Z ❯ found release for  Version {
2024-02-13T12:02:43.5138461Z   major: 0,
2024-02-13T12:02:43.5138877Z   minor: 2,
2024-02-13T12:02:43.5139358Z   patch: 1,
2024-02-13T12:02:43.5139653Z   preRelease: undefined,
2024-02-13T12:02:43.5140092Z   build: undefined
2024-02-13T12:02:43.5140429Z }
2024-02-13T12:02:43.5140930Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5141470Z ❯ found release for  Version {
2024-02-13T12:02:43.5141887Z   major: 0,
2024-02-13T12:02:43.5142227Z   minor: 2,
2024-02-13T12:02:43.5142532Z   patch: 0,
2024-02-13T12:02:43.5142873Z   preRelease: undefined,
2024-02-13T12:02:43.5143291Z   build: undefined
2024-02-13T12:02:43.5143626Z }
2024-02-13T12:02:43.5144050Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5144641Z ❯ found release for  Version {
2024-02-13T12:02:43.5144997Z   major: 0,
2024-02-13T12:02:43.5145306Z   minor: 1,
2024-02-13T12:02:43.5145687Z   patch: 0,
2024-02-13T12:02:43.5145998Z   preRelease: undefined,
2024-02-13T12:02:43.5146433Z   build: undefined
2024-02-13T12:02:43.5146763Z }
2024-02-13T12:02:43.5147164Z ❯ SHA not found in recent commits to branch main, skipping
2024-02-13T12:02:43.5147764Z ❯ found 2 possible releases. [
2024-02-13T12:02:43.5148179Z   Version {
2024-02-13T12:02:43.5148484Z     major: 0,
2024-02-13T12:02:43.5148872Z     minor: 7,
2024-02-13T12:02:43.5149182Z     patch: 1,
2024-02-13T12:02:43.5149510Z     preRelease: undefined,
2024-02-13T12:02:43.5149922Z     build: undefined
2024-02-13T12:02:43.5150252Z   },
2024-02-13T12:02:43.5150731Z   Version {
2024-02-13T12:02:43.5151100Z     major: 0,
2024-02-13T12:02:43.5151404Z     minor: 7,
2024-02-13T12:02:43.5151785Z     patch: 1,
2024-02-13T12:02:43.5152073Z     preRelease: undefined,
2024-02-13T12:02:43.5152435Z     build: undefined
2024-02-13T12:02:43.5152852Z   }
2024-02-13T12:02:43.5153129Z ]
2024-02-13T12:02:43.5153874Z ✔ Building pull requests
2024-02-13T12:02:43.5154362Z ✔ Building strategies by path
2024-02-13T12:02:43.5154784Z ❯ .: python
2024-02-13T12:02:43.5155226Z ✔ Collecting release commit SHAs
2024-02-13T12:02:43.5155681Z ❯ release search depth: 400
2024-02-13T12:02:43.5156155Z ❯ Fetching releases with cursor undefined
2024-02-13T12:02:43.6411353Z ❯ Found release for path ., v0.7.1
2024-02-13T12:02:43.6412595Z ❯ release for path: ., version: 0.7.1, sha: a06b1e28c156915a9953040382c17a8e9bedf851
2024-02-13T12:02:43.6413624Z ✔ Collecting commits since all latest releases
2024-02-13T12:02:43.6414372Z ❯ commit search depth: 500
2024-02-13T12:02:43.6415130Z ❯ Set(1) { 'a06b1e28c156915a9953040382c17a8e9bedf851' }
2024-02-13T12:02:43.6416122Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-02-13T12:02:44.2351895Z ❯ Backfilling file list for commit: 7efdd01b6a529220d2fd737a56d1f07b0f600b59
2024-02-13T12:02:44.3566715Z ❯ Found 3 files
2024-02-13T12:02:44.3567914Z ❯ Backfilling file list for commit: b945b2b1d33559911e868128cac17aebcca00243
2024-02-13T12:02:44.4501878Z ❯ Found 1 files
2024-02-13T12:02:44.4503242Z ❯ Backfilling file list for commit: f6d998e2bc101edd710a91a37e3827e04f56be62
2024-02-13T12:02:44.5269491Z ❯ Found 1 files
2024-02-13T12:02:44.5270857Z ❯ Backfilling file list for commit: a4d7439b8abf663e291c6055f6b10906c37ce529
2024-02-13T12:02:44.6259235Z ❯ Found 2 files
2024-02-13T12:02:44.6260647Z ❯ Backfilling file list for commit: b7e7a016bcd1f49879b797cb54140f0fdbdfe8be
2024-02-13T12:02:44.7228639Z ❯ Found 1 files
2024-02-13T12:02:44.7229842Z ❯ Backfilling file list for commit: 02ff1f101f0037f025f22faa0b64a82c41695485
2024-02-13T12:02:44.8030329Z ❯ Found 1 files
2024-02-13T12:02:44.8031438Z ❯ Backfilling file list for commit: f1d66445ba9c2fce04f68134808c0a2127d13779
2024-02-13T12:02:44.8816396Z ❯ Found 2 files
2024-02-13T12:02:44.8817622Z ❯ Backfilling file list for commit: 3b68bfb3e0da4c89170cac80e64b910a770f3d6d
2024-02-13T12:02:44.9517274Z ❯ Found 2 files
2024-02-13T12:02:44.9518702Z ❯ Backfilling file list for commit: 90ea57ea8c726a083c2fd733b378a7d0e8d6555b
2024-02-13T12:02:45.0459193Z ❯ Found 1 files
2024-02-13T12:02:45.0460076Z ✔ Splitting 2 commits by path
2024-02-13T12:02:45.0466165Z ✔ Building candidate release pull request for path: .
2024-02-13T12:02:45.0467677Z ❯ type: python
2024-02-13T12:02:45.0468540Z ❯ targetBranch: main
2024-02-13T12:02:45.0486172Z ❯ commits: 2
2024-02-13T12:02:45.0488054Z ✔ Considering: 2 commits
2024-02-13T12:02:45.0491140Z ❯ component: 
2024-02-13T12:02:45.0491949Z ❯ pull request title pattern: undefined
2024-02-13T12:02:45.3355581Z ✔ No user facing commits found since a06b1e28c156915a9953040382c17a8e9bedf851 - skipping
2024-02-13T12:02:45.3799776Z Cleaning up orphan processes

Additional information

No response

dmi3y commented 5 months ago

Confirming that, spent some time trying to figure out what's wrong with my config when adding extra-files. Switching to v3 fixes it by adding extra-files in the workflow config directly.

vuryss commented 4 months ago

I would also confirm. Prefixes like ci: do not trigger a release PR and do not appear in the changelog.

My release-please-config.json:

{
  "packages": {
    ".": {
      "changelog-path": "CHANGELOG.md",
      "release-type": "simple",
      "bump-minor-pre-major": false,
      "bump-patch-for-minor-pre-major": false,
      "draft": false,
      "prerelease": false,
      "changelog-sections": [
        {
          "type": "feat",
          "section": "Features",
          "hidden": false
        },
        {
          "type": "fix",
          "section": "Bug Fixes",
          "hidden": false
        },
        {
          "type": "perf",
          "section": "Performance Improvements",
          "hidden": false
        },
        {
          "type": "revert",
          "section": "Reverts",
          "hidden": false
        },
        {
          "type": "chore",
          "section": "Miscellaneous Chores",
          "hidden": false
        },
        {
          "type": "docs",
          "section": "Documentation",
          "hidden": false
        },
        {
          "type": "style",
          "section": "Styles",
          "hidden": false
        },
        {
          "type": "refactor",
          "section": "Code Refactoring",
          "hidden": false
        },
        {
          "type": "test",
          "section": "Tests",
          "hidden": false
        },
        {
          "type": "build",
          "section": "Build System",
          "hidden": false
        },
        {
          "type": "ci",
          "section": "Continuous Integration",
          "hidden": false
        }
      ]
    }
  },
  "changelog-sections": [
    {
      "type": "feat",
      "section": "Features",
      "hidden": false
    },
    {
      "type": "fix",
      "section": "Bug Fixes",
      "hidden": false
    },
    {
      "type": "perf",
      "section": "Performance Improvements",
      "hidden": false
    },
    {
      "type": "revert",
      "section": "Reverts",
      "hidden": false
    },
    {
      "type": "chore",
      "section": "Miscellaneous Chores",
      "hidden": false
    },
    {
      "type": "docs",
      "section": "Documentation",
      "hidden": false
    },
    {
      "type": "style",
      "section": "Styles",
      "hidden": false
    },
    {
      "type": "refactor",
      "section": "Code Refactoring",
      "hidden": false
    },
    {
      "type": "test",
      "section": "Tests",
      "hidden": false
    },
    {
      "type": "build",
      "section": "Build System",
      "hidden": false
    },
    {
      "type": "ci",
      "section": "Continuous Integration",
      "hidden": false
    }
  ],
  "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}
vuryss commented 4 months ago

One of my colleagues found a weird way to make it work...

He removed the release-type: simple from the github action itself and he left it only inside the release-please-config.json as visible in the above example. Then all the types started to work and released are created.

The release type is STILL simple but it's ONLY defined in the config file, not in the release please github action yaml. That was the only change. We checked on multiple projects and confirmed it actually works. Why? No idea.

Kudos @arthurmoser

engeir commented 4 months ago

Thanks @vuryss! Got it working as well after removing everything except "token", "config-file" and "manifest-file" in the "with" block of the workflow file. Closing on this, as I see the README only specifies those three inputs when using config-file and manifest-file.

tongesy commented 4 months ago

After wasting too much time on this, I have it working like so for a node codebase:

Github action: release-please.yml

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@v4
        with:
          token: ${{ secrets.RELEASE_PLEASE_TOKEN }}

release-please-config.json

{
  "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
  "packages": {
    ".": {
      "changelog-path": "CHANGELOG.md",
      "release-type": "node",
      "changelog-sections": [
        { "type": "feat", "section": "🚀 New Features", "hidden": false },
        { "type": "feature", "section": "🚀 New Features", "hidden": false },
        { "type": "enhance", "section": "💅 Enhancements", "hidden": false },
        { "type": "fix", "section": "🔥 Bug Fixes", "hidden": false },
        { "type": "perf", "section": "🏃 Performance Improvements", "hidden": false },
        { "type": "revert", "section": "↩️ Reverts", "hidden": true },
        { "type": "docs", "section": "📚 Documentation", "hidden": false },
        { "type": "style", "section": "🎨 Code Style", "hidden": false },
        { "type": "chore", "section": "⚙️ Chores", "hidden": false },
        { "type": "refactor", "section": "⌨️ Code Refactoring", "hidden": false },
        { "type": "test", "section": "🧪 Automated Testing", "hidden": false },
        { "type": "build", "section": "🛠️ Build System", "hidden": false },
        { "type": "ci", "section": "📦 CI Improvements", "hidden": false }
      ]
    }
  }
}

.release-please-manifest.json From what I understand in the docs, this is your initial release version

{
  ".": "1.0.0"
}