Skip to content

Commit

Permalink
new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlbgn committed Aug 31, 2024
1 parent 8c29016 commit b854340
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: Auto Create Pull Request

on:
push:
branches:
- dev-webflow

jobs:
create-pull-request:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: master
head: dev-webflow
title: "Merge dev-webflow into master"
body: "This PR is automatically created to merge changes from dev-webflow into master."

0 comments on commit b854340

Please sign in to comment.