From bef7e6472dda4c4ddf5f326664aff2ab120c8668 Mon Sep 17 00:00:00 2001 From: Juan Molteni Date: Fri, 3 Apr 2026 13:27:48 -0300 Subject: [PATCH 1/4] chore: use reusable pr-comment-reminder action from decentraland/actions Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/pr-merge-reminder.yml | 26 +++++++++---------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/.github/workflows/pr-merge-reminder.yml b/.github/workflows/pr-merge-reminder.yml index ce0bba5..9ee0088 100644 --- a/.github/workflows/pr-merge-reminder.yml +++ b/.github/workflows/pr-merge-reminder.yml @@ -5,20 +5,12 @@ on: types: [opened] jobs: - add-reminder-comment: - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - name: Add merge alignment reminder - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PR_NUMBER: ${{ github.event.pull_request.number }} - run: | - curl -s -X POST \ - -H "Authorization: Bearer $GH_TOKEN" \ - -H "Accept: application/vnd.github+v3+json" \ - "https://api.github.com/repos/${{ github.repository }}/issues/$PR_NUMBER/comments" \ - -d '{ - "body": "## 🔗 Merge Alignment Reminder\n\nIf this PR targets `main`, please make sure the corresponding changes in **[unity-explorer](https://github.com/decentraland/unity-explorer/)** are also ready to merge.\n\nBoth repos should be merged in coordination to avoid breaking changes. **Do not merge one without the other being ready.**" - }' + reminder: + uses: decentraland/actions/.github/workflows/pr-comment-reminder.yml@main + with: + message: | + ## 🔗 Merge Alignment Reminder + + If this PR targets `main`, please make sure the corresponding changes in **[unity-explorer](https://github.com/decentraland/unity-explorer/)** are also ready to merge. + + Both repos should be merged in coordination to avoid breaking changes. **Do not merge one without the other being ready.** From 7d4dd3dbf585c5faa284abdfd181f1a684459545 Mon Sep 17 00:00:00 2001 From: Juan Molteni Date: Fri, 3 Apr 2026 13:37:40 -0300 Subject: [PATCH 2/4] chore: point to fix branch for testing pr-comment-reminder action Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/pr-merge-reminder.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-merge-reminder.yml b/.github/workflows/pr-merge-reminder.yml index 9ee0088..94c73ee 100644 --- a/.github/workflows/pr-merge-reminder.yml +++ b/.github/workflows/pr-merge-reminder.yml @@ -6,7 +6,7 @@ on: jobs: reminder: - uses: decentraland/actions/.github/workflows/pr-comment-reminder.yml@main + uses: decentraland/actions/.github/workflows/pr-comment-reminder.yml@fix/pr-comment-reminder with: message: | ## 🔗 Merge Alignment Reminder From f713e96aad012a2f5faac1047e8ef101c35b34e4 Mon Sep 17 00:00:00 2001 From: Juan Molteni Date: Fri, 3 Apr 2026 13:39:53 -0300 Subject: [PATCH 3/4] chore: test PR comment reminder action Co-Authored-By: Claude Opus 4.6 (1M context) From 21c9f3d52afa1e4f802edf2b386aa85c603f6748 Mon Sep 17 00:00:00 2001 From: Juan Ignacio Molteni Date: Fri, 3 Apr 2026 13:49:03 -0300 Subject: [PATCH 4/4] Update PR comment reminder workflow reference to main Signed-off-by: Juan Ignacio Molteni --- .github/workflows/pr-merge-reminder.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-merge-reminder.yml b/.github/workflows/pr-merge-reminder.yml index 94c73ee..9ee0088 100644 --- a/.github/workflows/pr-merge-reminder.yml +++ b/.github/workflows/pr-merge-reminder.yml @@ -6,7 +6,7 @@ on: jobs: reminder: - uses: decentraland/actions/.github/workflows/pr-comment-reminder.yml@fix/pr-comment-reminder + uses: decentraland/actions/.github/workflows/pr-comment-reminder.yml@main with: message: | ## 🔗 Merge Alignment Reminder