This repository was archived by the owner on Aug 2, 2023. It is now read-only.
Description Hello i have an error when the action is trigger :
step :
create branch "test-auto-pr" from branch "develop"
create file touch delete.me
commit the file
push git push origin test-auto-pr
the job is trigger but is failed
My .yml :
name : Create Pull Request
on :
push :
branches :
- " *"
- " !develop"
- " !master"
jobs :
pull-request :
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v2
- name : pull-request
uses : repo-sync/pull-request@v2
with :
destination_branch : " develop" # If blank, default: master
pr_title : " ${{github.actor}} triger auto pr : ${{ github.ref }} into develop"
pr_body : " 📡 *An automated PR*" # Full markdown support, requires pr_title to be set
pr_reviewer : " bouteillerAlan" # Comma-separated list (no spaces)
pr_assignee : " bouteillerAlan" # Comma-separated list (no spaces)
pr_label : " auto-pr" # Comma-separated list (no spaces)
github_token : ${{ secrets.GITHUB_TOKEN }}
Reactions are currently unavailable
Hello i have an error when the action is trigger :

step :
touch delete.megit push origin test-auto-prMy .yml :