Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/release-please-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.1.5
Choose a base ref
...
head repository: googleapis/release-please-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.2.0
Choose a head ref
  • 7 commits
  • 8 files changed
  • 5 contributors

Commits on Mar 5, 2025

  1. build: grant permissions to release-please action (#1090)

    Signed-off-by: Jeff Ching <chingor@google.com>
    chingor13 authored Mar 5, 2025
    Copy the full SHA
    26ac09b View commit details
  2. chore(main): Update org name to googleapis (#1061)

    These links were all broken. This should fix it.
    
    Co-authored-by: Jeff Ching <chingor@google.com>
    Peeja and chingor13 authored Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    73cae70 View commit details

Commits on Mar 7, 2025

  1. chore: replace bcoe with googleapis references (#1060)

    There are some references of the old repo (probably before it was moved
    to the `googleapis` org).
    This PR updates these references, but still keeps the author section as
    is.
    dsotirakis authored Mar 7, 2025
    Copy the full SHA
    9eba3b9 View commit details
  2. docs: update paths_released description (#1062)

    Looks like a description was left incomplete. Adds some clarity around
    the paths_released description.
    
    ---------
    
    Signed-off-by: Dimitris Sotirakis <dimitrios.sotirakis@grafana.com>
    dsotirakis authored Mar 7, 2025
    Copy the full SHA
    35ed136 View commit details
  3. feat: support for skip-labeling parameter for GitHub action (#1066)

    Adds support and documentation for the skipLabeling option when running
    release-please from GitHub Actions.
    
    This option in the config are ignored when running in
    release-please-action, and only honored when you pass it as an option
    via a command line. This PR adds the same support to GitHub action.
    
    ---------
    
    Co-authored-by: Jeff Ching <chingor@google.com>
    huksley and chingor13 authored Mar 7, 2025
    Copy the full SHA
    fb7f385 View commit details
  4. chore: build dist (#1095)

    Build dist
    yoshi-code-bot authored Mar 7, 2025
    Copy the full SHA
    dcfad47 View commit details
  5. chore(main): release 4.2.0 (#1096)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ##
    [4.2.0](v4.1.5...v4.2.0)
    (2025-03-07)
    
    
    ### Features
    
    * support for skip-labeling parameter for GitHub action
    ([#1066](#1066))
    ([fb7f385](fb7f385))
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    yoshi-code-bot authored Mar 7, 2025
    Copy the full SHA
    a02a34c View commit details
Showing with 144 additions and 122 deletions.
  1. +3 −0 .github/workflows/release-please.yaml
  2. +120 −113 CHANGELOG.md
  3. +2 −1 README.md
  4. +4 −0 action.yml
  5. +4 −1 dist/index.js
  6. +2 −2 package-lock.json
  7. +4 −4 package.json
  8. +5 −1 src/index.ts
3 changes: 3 additions & 0 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
@@ -3,6 +3,9 @@ on:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
name: release-please
env:
ACTION_NAME: release-please-action
Loading