Updates for project Nextcloud dialogs library #727
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow is provided via the organization template repository | |
| # | |
| # https://github.com/nextcloud-libraries/.github | |
| # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | |
| # | |
| # SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: MIT | |
| name: Command L10n Update | |
| on: | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| contents: read | |
| jobs: | |
| init: | |
| runs-on: ubuntu-latest | |
| # On pull requests and if the comment starts with `/l10n-update` | |
| if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/l10n-update') | |
| outputs: | |
| arg1: ${{ steps.command.outputs.arg1 }} | |
| head_ref: ${{ steps.comment-branch.outputs.head_ref }} | |
| steps: | |
| - name: Add reaction on start | |
| uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 | |
| with: | |
| token: ${{ secrets.COMMAND_BOT_PAT }} | |
| repository: ${{ github.event.repository.full_name }} | |
| comment-id: ${{ github.event.comment.id }} | |
| reactions: '+1' | |
| - name: Parse command | |
| uses: skjnldsv/parse-command-comment@5c955203c52424151e6d0e58fb9de8a9f6a605a1 # v3.1.0 | |
| id: command | |
| - name: Init branch | |
| uses: xt0rted/pull-request-comment-branch@e8b8daa837e8ea7331c0003c9c316a64c6d8b0b1 # v3.0.0 | |
| id: comment-branch | |
| process: | |
| runs-on: ubuntu-latest | |
| needs: init | |
| steps: | |
| - name: Checkout ${{ needs.init.outputs.head_ref }} | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ needs.init.outputs.head_ref }} | |
| # Needed to push changes | |
| persist-credentials: true | |
| token: ${{ secrets.COMMAND_BOT_PAT }} | |
| - name: Setup git | |
| run: | | |
| git config --local user.email "nextcloud-command@users.noreply.github.com" | |
| git config --local user.name "nextcloud-command" | |
| - name: Read package.json | |
| uses: nextcloud-libraries/parse-package-engines-action@122ae05d4257008180a514e1ddeb0c1b9d094bdd # v0.1.0 | |
| id: versions | |
| - name: Set up node | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: ${{ steps.versions.outputs.node-version }} | |
| - name: Set up npm | |
| run: npm i -g 'npm@${{ steps.versions.outputs.package-manager-version }}' | |
| - name: Install dependencies & build l10n | |
| run: | | |
| npm ci | |
| npm run l10n:extract --if-present | |
| - name: Commit and push default | |
| if: ${{ needs.init.outputs.arg1 != 'fixup' && needs.init.outputs.arg1 != 'amend' }} | |
| run: | | |
| git add . | |
| git commit --signoff -m 'chore(l10n): extract new translations' | |
| git push origin ${{ needs.init.outputs.head_ref }} | |
| - name: Commit and push fixup | |
| if: ${{ needs.init.outputs.arg1 == 'fixup' }} | |
| run: | | |
| git add . | |
| git commit --fixup=HEAD --signoff | |
| git push origin ${{ needs.init.outputs.head_ref }} | |
| - name: Commit and push amend | |
| if: ${{ needs.init.outputs.arg1 == 'amend' }} | |
| run: | | |
| git add . | |
| git commit --amend --no-edit --signoff | |
| git push --force origin ${{ needs.init.outputs.head_ref }} | |
| - name: Add reaction on failure | |
| uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 | |
| if: failure() | |
| with: | |
| token: ${{ secrets.COMMAND_BOT_PAT }} | |
| repository: ${{ github.event.repository.full_name }} | |
| comment-id: ${{ github.event.comment.id }} | |
| reaction-type: "-1" |