chore: add explicit logger dependency to api and sdk gems (#1951) #800
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "[release hook] Update open releases" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| release-update-open-requests: | |
| if: ${{ github.repository == 'open-telemetry/opentelemetry-ruby' }} | |
| permissions: | |
| contents: write # required for pushing changes | |
| pull-requests: write # required for updating open release PRs | |
| env: | |
| ruby_version: "3.1" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Ruby ${{ env.ruby_version }} | |
| uses: ruby/[email protected] | |
| with: | |
| ruby-version: ${{ env.ruby_version }} | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Install Toys | |
| run: "gem install --no-document toys -v 0.15.5" | |
| - name: Update open releases | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| toys release _onpush --verbose \ | |
| < /dev/null |