forked from guacsec/trustify
-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (32 loc) · 1.1 KB
/
backport.yaml
File metadata and controls
35 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: backport
on:
pull_request_target:
branches:
- main
types:
- closed
issue_comment:
types:
- created
jobs:
cherry_pick_job:
permissions:
pull-requests: write
contents: write
# Only run when pull request is merged
# or when a comment starting with `/backport` is created by someone other than the
# https://github.com/apps/trustification-ci-bot bot user (user id: 199085543). Note that if you use your
# own PAT as `github_token`, that you should replace this id with yours.
# To get Github App user id we can do: 'curl -H "Authorization: Bearer token" -s https://api.github.com/users/trustification-ci-bot%5Bbot%5D'
if: >
(
github.event_name == 'pull_request_target' &&
github.event.pull_request.merged
) || (
github.event_name == 'issue_comment' &&
github.event.issue.pull_request &&
github.event.comment.user.id != 199085543 &&
startsWith(github.event.comment.body, '/backport')
)
secrets: inherit
uses: guacsec/trustify-release-tools/.github/workflows/backport.yaml@main