Skip to content

Add Perfverse

Add Perfverse #683

Workflow file for this run

name: Create Release PR
on:
pull_request:
types:
- closed
jobs:
create_prerelease:
if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'prerelease')) }}
runs-on: ubuntu-22.04
permissions:
contents: write
pull-requests: write
steps:
- name: Install Ruby 3.4
uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # tag v1.263.0
with:
ruby-version: 3.4
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # tag v5.0.0
- run: bundle
- name: Set agent version
run: echo "agent_version=$(bundle exec rake newrelic:version:current)" >> $GITHUB_ENV
- name: Create pull request
run: gh pr create --draft --base "main" --title "$TITLE" --body "$BODY"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TITLE: "Release ${{ env.agent_version }}"
BODY: "Automated PR for ${{ env.agent_version}} release"