Workflow file for this run
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: Create Pull Request to Another Fork | |
on: | |
push: | |
branches: | |
- sam-patch # Change this to the branch you want to trigger the action on | |
jobs: | |
create_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: sam-patch # Branch to create the pull request from | |
commit-message: "Automated PR from original repo" | |
title: "Automated Pull Request" | |
body: | | |
This pull request is automatically generated by a GitHub Actions workflow. | |
base: sam-shervin/hackhub-24-testdeploy # Branch in the target fork/repository | |
branch-suffix: master | |
labels: automated |