Skip to content

server

server #7

Workflow file for this run

name: Merge to Base
on:
push:
branches:
- main # Adjust this according to your main branch name in your forked repository
jobs:
merge_to_base:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Git
run: |
git config --global user.name "ostrich-egg"
git config --global user.email "sauhardhakafle12@gmail.com"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.PAT_TOKEN }}
branch: master # Adjust this according to your main branch name in your forked repository
base: main # Adjust this according to your main branch name in the base repository
title: Automatically generated PR
body: |
This pull request was automatically generated by a GitHub Action.