name: Compile Command on: issue_comment: types: [created] jobs: init: runs-on: ubuntu-latest # On pull requests and if the comment starts with `/compile` if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/compile') outputs: git_path: ${{ steps.git-path.outputs.path }} arg1: ${{ steps.command.outputs.arg1 }} arg2: ${{ steps.command.outputs.arg2 }} head_ref: ${{ steps.comment-branch.outputs.head_ref }} steps: - name: Check actor permission uses: skjnldsv/check-actor-permission@e591dbfe838300c007028e1219ca82cc26e8d7c5 # v2.1 with: require: write - name: Add reaction on start uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae # v1.4.5 with: token: ${{ secrets.COMMAND_BOT_PAT }} repository: ${{ github.event.repository.full_name }} comment-id: ${{ github.event.comment.id }} reaction-type: "+1" - name: Parse command uses: skjnldsv/parse-command-comment@7cef1df370a99dfd5bf896d50121390c96785db8 # v2.0 id: command # Init path depending on which command is run - name: Init path id: git-path run: | if ${{ startsWith(steps.command.outputs.arg1, '/') }}; then echo "::set-output name=path::${{ github.workspace }}${{steps.command.outputs.arg1}}" else echo "::set-output name=path::${{ github.workspace }}${{steps.command.outputs.arg2}}" fi - name: Init branch uses: xt0rted/pull-request-comment-branch@653a7d5ca8bd91d3c5cb83286063314d0b063b8e # v1.4.0 id: comment-branch process: runs-on: ubuntu-latest needs: init steps: - name: Checkout ${{ needs.init.outputs.head_ref }} uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 with: token: ${{ secrets.COMMAND_BOT_PAT }} fetch-depth: 0 ref: ${{ needs.init.outputs.head_ref }} - 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 node and npm engines version uses: skjnldsv/read-package-engines-version-actions@1bdcee71fa343c46b18dc6aceffb4cd1e35209c6 # v1.2 id: package-engines-versions with: fallbackNode: '^12' fallbackNpm: '^6' - name: Set up node ${{ steps.package-engines-versions.outputs.nodeVersion }} uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2 with: node-version: ${{ steps.package-engines-versions.outputs.nodeVersion }} cache: npm - name: Set up npm ${{ steps.package-engines-versions.outputs.npmVersion }} run: npm i -g npm@"${{ steps.package-engines-versions.outputs.npmVersion }}" - name: Install dependencies & build run: | npm ci npm run build --if-present - name: Commit and push default if: ${{ needs.init.outputs.arg1 != 'fixup' && needs.init.outputs.arg1 != 'amend' }} run: | git add ${{ needs.init.outputs.git_path }} git commit --signoff -m 'Compile assets' git push origin ${{ needs.init.outputs.head_ref }} - name: Commit and push fixup if: ${{ needs.init.outputs.arg1 == 'fixup' }} run: | git add ${{ needs.init.outputs.git_path }} 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 ${{ needs.init.outputs.git_path }} 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@a35cf36e5301d70b76f316e867e7788a55a31dae # v1.4.5 if: failure() with: token: ${{ secrets.COMMAND_BOT_PAT }} repository: ${{ github.event.repository.full_name }} comment-id: ${{ github.event.comment.id }} reaction-type: "-1"