From 529b2c913b9eb8243fdd06256e76580f965e461e Mon Sep 17 00:00:00 2001 From: okafke <65917827+okafke@users.noreply.github.com> Date: Tue, 11 Nov 2025 15:07:06 +0100 Subject: [PATCH 1/3] chore(ci): fix check for new mc version workflow --- .github/workflows/new-mc-version.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/new-mc-version.yml b/.github/workflows/new-mc-version.yml index 98bf68c..a6379fe 100644 --- a/.github/workflows/new-mc-version.yml +++ b/.github/workflows/new-mc-version.yml @@ -10,6 +10,7 @@ jobs: permissions: contents: write pull-requests: write + actions: write steps: - name: Checkout repository From 953944ea47a7236b67cdf9ed95a7948ccde85507 Mon Sep 17 00:00:00 2001 From: okafke <65917827+okafke@users.noreply.github.com> Date: Tue, 11 Nov 2025 16:07:05 +0100 Subject: [PATCH 2/3] chore(ci): Fix syntax in new mc version workflow --- .github/workflows/new-mc-version.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/new-mc-version.yml b/.github/workflows/new-mc-version.yml index a6379fe..9166208 100644 --- a/.github/workflows/new-mc-version.yml +++ b/.github/workflows/new-mc-version.yml @@ -46,8 +46,8 @@ jobs: uses: peter-evans/create-pull-request@v7 with: author: 'github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>' - assignees: [ okafke ] - reviewers: [ okafke ] + assignees: okafke + reviewers: okafke commit-message: "feat: ${{ env.LATEST_VERSION }}" delete-branch: true token: ${{ secrets.MC_VERSION_WORKFLOW_TOKEN }} From 3edea194582a52b5d95667fc70a3d68840ba37eb Mon Sep 17 00:00:00 2001 From: okafke <65917827+okafke@users.noreply.github.com> Date: Tue, 11 Nov 2025 16:10:00 +0100 Subject: [PATCH 3/3] chore(ci): Fix syntax in new mc version workflow --- .github/workflows/new-mc-version.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/new-mc-version.yml b/.github/workflows/new-mc-version.yml index 9166208..0c35865 100644 --- a/.github/workflows/new-mc-version.yml +++ b/.github/workflows/new-mc-version.yml @@ -45,9 +45,10 @@ jobs: if: steps.git-check.outputs.changes == 'true' && env.LATEST_VERSION != '' uses: peter-evans/create-pull-request@v7 with: + # TODO: check if this works from the cron job, but it does not work from workflow_dispatch author: 'github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>' assignees: okafke - reviewers: okafke + #reviewers: okafke commit-message: "feat: ${{ env.LATEST_VERSION }}" delete-branch: true token: ${{ secrets.MC_VERSION_WORKFLOW_TOKEN }}