Skip to content

Commit

Permalink
feat: add workflow to allow for automatic opening of PR upon release
Browse files Browse the repository at this point in the history
  • Loading branch information
raimundo-henriques committed May 20, 2024
1 parent d26c8f9 commit 121d5dc
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create Release Pull Request
on:
workflow_dispatch:
inputs:
version:
description: "Version"
required: true
pull_request:

jobs:
create-pull-request:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2

- name: Get date
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d')"

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
branch: release-v${{inputs.version}}-${{steps.date.outputs.date}}
token: ${{ secrets.GITHUB_TOKEN }}
title: 'Release v${{inputs.version}}'

0 comments on commit 121d5dc

Please sign in to comment.