We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e6c09ad + 787a37a commit de75612Copy full SHA for de75612
.github/workflows/localization-automerge.yml
@@ -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