Merge pull request #2456 from tdonohue/skip_merge_commits_in_port_pr

[GitHub Actions] When porting a PR, skip any merge commits
This commit is contained in:
Tim Donohue
2023-08-23 17:07:59 -05:00
committed by GitHub

View File

@@ -39,6 +39,8 @@ jobs:
# Copy all labels from original PR to (newly created) port PR
# NOTE: The labels matching 'label_pattern' are automatically excluded
copy_labels_pattern: '.*'
# Skip any merge commits in the ported PR. This means only non-merge commits are cherry-picked to the new PR
merge_commits: 'skip'
# Use a personal access token (PAT) to create PR as 'dspace-bot' user.
# A PAT is required in order for the new PR to trigger its own actions (for CI checks)
github_token: ${{ secrets.PR_PORT_TOKEN }}