Skip to content

Commit

Permalink
rls workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-perkins committed Jan 10, 2025
1 parent b2c5314 commit a78a121
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/create-release-pr-v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create Release Pull Request

on:
workflow_dispatch:
inputs:
base-branch:
description: 'The base branch, tag, or SHA for git operations and the pull request.' # ex Version-v2.5.3
required: true
semver-version:
description: 'A semantic version. eg: x.x.x'
required: true
previous-version-tag:
description: 'Previous release version tag. eg: v7.7.0'
required: true
jobs:
create-release-pr:
uses: MetaMask/github-tools/.github/workflows/create-release-pr.yml@rls-alignment
with:
platform: extension
base-branch: ${{ inputs.base-branch }}
semver-version: ${{ inputs.semver-version }}
previous-version-tag: ${{ inputs.previous-version-tag }}
permissions:
contents: write
pull-requests: write

0 comments on commit a78a121

Please sign in to comment.