label-commenter-config.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. comment:
  2. header: Hello @{{ issue.user.login }}
  3. footer: "\
  4. ---\n\n
  5. > This is an automated comment created by the [peaceiris/actions-label-commenter]. \
  6. Responding to the bot or mentioning it won't have any effect.\n\n
  7. [peaceiris/actions-label-commenter]: https://github.com/peaceiris/actions-label-commenter
  8. "
  9. labels:
  10. - name: stable backport
  11. labeled:
  12. pr:
  13. body: |
  14. This pull request has been tagged as a stable backport. It will be cherry-picked into the next stable point release.
  15. Please observe the following:
  16. * Any dependent PRs that this PR requires **must** be tagged for stable backporting as well.
  17. * Any issue(s) this PR fixes or closes **should** target the current stable release or a previous stable release to which a fix has not yet entered the current stable release.
  18. * This PR **must** be test cherry-picked against the current release branch (`release-X.Y.z` where X and Y are numbers). It must apply cleanly, or a diff of the expected change must be provided.
  19. To do this, run the following commands from your local copy of the Jellyfin repository:
  20. 1. `git checkout master`
  21. 1. `git merge --no-ff <myPullRequestBranch>`
  22. 1. `git log` -> `commit xxxxxxxxx`, grab hash
  23. 1. `git checkout release-X.Y.z` replacing X and Y with the *current* stable version (e.g. `release-10.7.z`)
  24. 1. `git cherry-pick -sx -m1 <hash>`
  25. Ensure the `cherry-pick` applies cleanly. If it does not, fix any merge conflicts *preserving as much of the original code as possible*, and make note of the resulting diff.
  26. Test your changes with a build to ensure they are successful. If not, adjust the diff accordingly.
  27. **Do not** push your merges to either branch. Use `git reset --hard HEAD~1` to revert both branches to their original state.
  28. Reply to this PR with a comment beginning "Cherry-pick test completed." and including the merge-conflict-fixing diff(s) if applicable.