We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for your GH action.
It would be nice if there was an option to not fail the step if the branch name does not match.
The text was updated successfully, but these errors were encountered:
Use the native branches: filter so it only runs on a given branch pattern
branches:
eg:
# .github/workflows/action.yml on: pull_request: types: - opened branches: - main
Sorry, something went wrong.
You can use continue-on-error to prevents a job from failing when a step fails.
continue-on-error
- uses: tzkhan/pr-update-action@v2 continue-on-error: true with: repo-token: "${{ secrets.GITHUB_TOKEN }}" head-branch-regex: 'foo-\d+' title-template: '[%headbranch%] '
No branches or pull requests
Thanks for your GH action.
It would be nice if there was an option to not fail the step if the branch name does not match.
The text was updated successfully, but these errors were encountered: