Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,31 @@ This allows us to have a single source of truth to make sure that, as we create
enhancments, issues, and pull requests, they can be tracked properly.

You can find our reusable GitHub Workflows in [./.github/workflows](./.github/workflows).

## Reusable Actions

### [cherry-pick](./.github/workflows/cherry-pick.yaml)

Allows backporting changes of a PR into another branch. Requires the `cherry-pick/branch_name` label to be set to the PR.

To use it, Opt-in adding this action to your repository:

```yaml
name: PR Closed

on:
pull_request_target:
branches:
- main
types:
- closed

jobs:
cherry_pick_job:
permissions:
pull-requests: write
contents: write
if: github.event.pull_request.merged == true
secrets: inherit
uses: trustification/release-tools/.github/workflows/cherry-pick.yaml@main
```
Loading