Skip to content

Create Testrelease PR #8

Create Testrelease PR

Create Testrelease PR #8

# © 2025 SolarWinds Worldwide, LLC. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
name: Create Testrelease PR
on:
workflow_dispatch:
inputs:
version:
description: 'Semantic version of testrelease (e.g. 1.0.0.1)'
required: true
# Note: We don't maintain nor check for testrelease tags; only for regular releases.
env:
RELEASE_VERSION: ${{ github.event.inputs.version }}
jobs:
create_testrelease_pr:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v6
- name: Initialize git
run: |
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- name: Create testrelease branch draft pull request
run: cd .github/scripts && ./testrelease_pr.sh ${{ env.RELEASE_VERSION }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}