Skip to content

Merge branch 'main' of https://github.com/AnataAria/Fall2023SWP391_NE… #208

Merge branch 'main' of https://github.com/AnataAria/Fall2023SWP391_NE…

Merge branch 'main' of https://github.com/AnataAria/Fall2023SWP391_NE… #208

name: Create Pull Request
on:
push:
branches:
- '*'
jobs:
create-pr:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, 'create pr')
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
title: 'Automated PR from ${{ github.ref }}'
branch: ${{ github.ref }}
base: 'main' # Change this to the target branch
body: 'Automatically created PR from a GitHub Action.'
labels: 'automated-pr'