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 f1e9f03
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create Release Pull Request
on:
workflow_dispatch:
inputs:
version:
description: "Version"
required: true

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
env:
GH_TOKEN: ${{ github.token }}
run: |
gh pr create --title "Automated PR" --body "This PR is created automatically by the workflow."
--base main --head release-v2.2.1-20240520

0 comments on commit f1e9f03

Please sign in to comment.