Sha256: 5b4a643b510f1c1a0487ac38548aef154ad14635504295f3075c17e34d8ee21a

Contents?: true

Size: 867 Bytes

Versions: 3

Compression:

Stored size: 867 Bytes

Contents

# This workflow opens and updates a pull request with a new package version
# based on code changes.

# The pull request updates the version in version.rb, updates the changelog
# and creates release tags.

# For more information, see https://github.com/marketplace/actions/release-please-action


on:
  push:
    branches:
      - master
  
permissions:
  contents: write
  pull-requests: write

name: release-please

jobs:
  release-please:
    runs-on: ubuntu-22.04
    steps:
      - uses: google-github-actions/release-please-action@v3.7.10
        with:
          release-type: ruby
          package-name: release-please-action
          version-file: "lib/buttercms/version.rb"
          pull-request-title-pattern: "chore(release): ${version}"
          pull-request-header: ":robot: Merge this PR to release a new version"
          include-v-in-tag: false

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buttercms-ruby-zwg-2.5.7 .github/workflows/release-please.yml
buttercms-ruby-zwg-2.5.2 .github/workflows/release-please.yml
buttercms-ruby-zwg-2.5.3 .github/workflows/release-please.yml