diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index e061257d9..54531df41 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -13,10 +13,11 @@ permissions: jobs: prepare: + if: ${{ github.repository == 'open-telemetry/opentelemetry-ruby-contrib' }} name: Process Release runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v4.0.2 + - uses: google-github-actions/release-please-action@v4.1.0 id: prepare outputs: diff --git a/instrumentation/rack/README.md b/instrumentation/rack/README.md index 1c6672829..290ad59bc 100644 --- a/instrumentation/rack/README.md +++ b/instrumentation/rack/README.md @@ -45,7 +45,7 @@ end ## Rack Middleware vs Rack Events -Since `v0.24.0`, this instrumentation uses `Rake::Events` as opposed to `Middleware` to support Requests that use Buffered Response Bodies. +Since `v0.24.0`, this instrumentation uses `Rack::Events` as opposed to `Middleware` to support Requests that use Buffered Response Bodies. If your application does not support `Rack::Events`, you may disable it by setting `use_rack_events: false`, e.g.