diff --git a/.github/workflows/new-mc-version.yml b/.github/workflows/new-mc-version.yml index 98bf68c..0c35865 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 @@ -44,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 ] + assignees: okafke + #reviewers: okafke commit-message: "feat: ${{ env.LATEST_VERSION }}" delete-branch: true token: ${{ secrets.MC_VERSION_WORKFLOW_TOKEN }}