Can I prevent a GitHub Pull Request from being created when the selected target branch fails a GitHub Actions workflow?
I have a branch name validity check GitHub Actions workflow that is intended to prevent PR’s from merging when the target branch is incompatible with the source branch name.
Can I prevent a GitHub Pull Request from being created when the selected target branch fails a GitHub Actions workflow?
I have a branch name validity check GitHub Actions workflow that is intended to prevent PR’s from merging when the target branch is incompatible with the source branch name.
How to force GitHub to update a PR merge branch?
Backstory: dependabot sent us a PR that bumped a bunch of NPM dependency versions, and the package-lock.json file in that PR was incorrect, causing npm ci to fail. We merged this PR before we realised this. We noticed the issue and created two PRs to fix it: One reverted the bad dependabot PR. One modified […]
Trigger the specific workflow after PR approval
I have a mono repo in github and using the github actions to run the build/deployment pipeline.