try to checkout #15
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: Pull Request from Backend | |
on: | |
push: | |
branches: | |
- update* | |
jobs: | |
auto-pull-request: | |
name: Open Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
title: Update from backend | |
body: This is an automated pull request from the backend. | |
branch: ${{ github.ref_name }} | |
assignees: sinaatalay, Klingler98 | |
base: main | |
token: ${{ secrets.TOKEN }} | |