Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JancoNel authored Apr 15, 2024
1 parent 795fad3 commit 6552301
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create Release PR

on:
push:
branches:
- main

jobs:
create-release-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Create Release PR
uses: peter-evans/create-pull-request@v3
with:
title: 'Release Update'
labels: 'release'
branch: 'main'
body: 'Automated release PR from main branch'
token: ${{ secrets.TOKEN }}

0 comments on commit 6552301

Please sign in to comment.