From 2a0af87af3688390f16ef283841d2240ad69ba96 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Fri, 13 Dec 2024 16:43:54 +0100 Subject: [PATCH] Sign commits in Localazy PRs --- .github/workflows/translations-download.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/translations-download.yaml b/.github/workflows/translations-download.yaml index b39841d41..3c6b3f9ee 100644 --- a/.github/workflows/translations-download.yaml +++ b/.github/workflows/translations-download.yaml @@ -9,7 +9,7 @@ jobs: download: runs-on: ubuntu-22.04 permissions: - contents: read + contents: write steps: - name: Checkout the code @@ -25,10 +25,14 @@ jobs: id: cpr uses: peter-evans/create-pull-request@v7.0.5 with: - token: ${{ secrets.BOT_GITHUB_TOKEN }} + sign-commits: true + branch-token: ${{ secrets.BOT_GITHUB_TOKEN }} branch: actions/localazy-download delete-branch: true - title: Localazy Download + title: Translations updates + labels: | + T-Task + A-I18n commit-message: Translations updates - name: Enable automerge @@ -36,4 +40,4 @@ jobs: if: steps.cpr.outputs.pull-request-operation == 'created' env: GH_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} - PR_NUMBER: ${{ steps.cpr.outputs.pull-request-number }} \ No newline at end of file + PR_NUMBER: ${{ steps.cpr.outputs.pull-request-number }}