README #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
branch: dev-webflow | |
title: "Auto PR: Merge dev-webflow into master" | |
body: "This PR is automatically created to merge changes from dev-webflow into master." |