Skip to content

Commit 7342296

Browse files
authoredDec 3, 2024
Adiciona configuração no workflow do GitHub para mostrar o link do PR no commit (#92)
issue [Configurar automerge dos PRs sem utilizar kodiak](monde-sistemas/melhorias#349) No commit, estava mostrando apenas o título e os detalhes do PR. Não tinha o link do PR. Estou adicionando essa configuração para mostrar o link do PR no commit. Também estou alterando a forma de fazer o merge, removendo o pascalgn/automerge-action porque ele estava [falhando em alguns PRs](https://github.com/monde-sistemas/m2/actions/runs/12121505151/job/33793229889). Encontrei pascalgn/automerge-action#122 sobre o problema.
1 parent b4accc1 commit 7342296

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed
 

‎.github/workflows/ci.yml

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: ci
22

3-
on: [push, pull_request]
3+
on:
4+
pull_request:
5+
types: [labeled, synchronize]
6+
push:
7+
branches: [master]
48

59
jobs:
610
qa:
@@ -35,11 +39,17 @@ jobs:
3539
contents: write
3640
pull-requests: write
3741
steps:
42+
- name: Checkout repository
43+
uses: actions/checkout@v3
44+
3845
- name: Merge pull request
39-
uses: pascalgn/automerge-action@v0.16.4
46+
run: |
47+
PR_NUMBER=$(basename "$PR_URL")
48+
PR_TITLE=$(gh pr view "$PR_NUMBER" --json title -q ".title")
49+
PR_BODY=$(gh pr view "$PR_NUMBER" --json body -q ".body")
50+
COMMIT_MESSAGE="${PR_TITLE} (#${PR_NUMBER})"
51+
52+
gh pr merge "$PR_URL" --auto --squash --subject "$COMMIT_MESSAGE" --body "$PR_BODY"
4053
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42-
MERGE_LABELS: "automerge"
43-
MERGE_METHOD: "squash"
44-
MERGE_COMMIT_MESSAGE: "pull-request-title-and-description"
45-
MERGE_DELETE_BRANCH: "true"
54+
PR_URL: ${{ github.event.pull_request.html_url }}
55+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.