Skip to content

Commit b081dc7

Browse files
author
anatolybolshakov
committed
Merge remote-tracking branch 'origin/master' into Localization
2 parents f81410c + de75612 commit b081dc7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: 'LEGO Automerge'
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
branches:
8+
- Localization
9+
10+
jobs:
11+
worker:
12+
runs-on: ubuntu-latest
13+
14+
if: github.actor == 'csigs'
15+
steps:
16+
- uses: actions/github-script@v3
17+
with:
18+
github-token: ${{ secrets.GITHUB_TOKEN }}
19+
script: |
20+
github.pulls.merge({
21+
owner: context.payload.repository.owner.login,
22+
repo: context.payload.repository.name,
23+
pull_number: context.payload.pull_request.number,
24+
merge_method: 'squash'
25+
})

0 commit comments

Comments
 (0)