From fc1f739d24da441eaef7f6d08daf04978c4f6e3d Mon Sep 17 00:00:00 2001 From: Xurvan Date: Thu, 2 Oct 2025 01:52:41 +0400 Subject: [PATCH 1/3] feat: add empty test.txt file --- test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..e69de29 From e9a6546b704b2d24c839f387645cdd2d9cedf110 Mon Sep 17 00:00:00 2001 From: Xurvan Date: Thu, 2 Oct 2025 02:03:43 +0400 Subject: [PATCH 2/3] feat: configure Git user for GitHub Actions workflow --- .github/workflows/pr-checks.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 557e7ef..a262aea 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -18,6 +18,10 @@ jobs: uses: moonrepo/setup-toolchain@v0 with: auto-install: true + - name: Configure Git + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" - name: Validate PR title run: cog verify "${{ github.event.pull_request.title }}" - name: Run moon CI tasks From 6f00d1d9b6cce72641ba5a37e58dc536bd8c9a08 Mon Sep 17 00:00:00 2001 From: Xurvan Date: Thu, 2 Oct 2025 02:26:22 +0400 Subject: [PATCH 3/3] feat: update PR Checks workflow with required permissions --- .github/workflows/pr-checks.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index a262aea..a3ec67d 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -5,6 +5,10 @@ on: types: [ opened, synchronize, edited, reopened ] branches: [ master ] +permissions: + contents: read + pull-requests: write + jobs: checks: name: PR Checks