You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 2, 2023. It is now read-only.
I noticed that between yesterday and today, the action started breaking.
Looking at the release history I see that there is one that matches the timeframe when the action started failing here. I suspect that the latest release is broken, at least for my use case.
The action doesn't provide any output, so I can't provide more information.
My action is:
name: Create production PRon:
push:
branches:
- developjobs:
createPR:
runs-on: ubuntu-lateststeps:
- name: Checkout codeuses: actions/checkout@v2
- name: Create Pull Requestuses: repo-sync/pull-request@v2with:
source_branch: "develop"destination_branch: "production"pr_title: "Production Deploy"pr_body: "Automated Production Deploy Pull Request. Opened with Github Actions. Merge this to trigger a deploy."pr_label: "Production Deploy"pr_allow_empty: truegithub_token: ${{ secrets.GITHUB_TOKEN }}