2021-08-19 17:09:11 +03:00
|
|
|
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
|
2023-06-01 18:50:56 +03:00
|
|
|
uses: skjnldsv/check-actor-permission@e591dbfe838300c007028e1219ca82cc26e8d7c5 # v2
|
2021-08-19 17:09:11 +03:00
|
|
|
with:
|
|
|
|
require: write
|
|
|
|
|
|
|
|
- name: Add reaction on start
|
2023-12-26 13:19:40 +03:00
|
|
|
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
|
2021-08-19 17:09:11 +03:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
repository: ${{ github.event.repository.full_name }}
|
|
|
|
comment-id: ${{ github.event.comment.id }}
|
2023-06-01 18:50:56 +03:00
|
|
|
reactions: "+1"
|
2021-08-19 17:09:11 +03:00
|
|
|
|
|
|
|
- name: Parse command
|
2023-06-01 18:50:56 +03:00
|
|
|
uses: skjnldsv/parse-command-comment@7cef1df370a99dfd5bf896d50121390c96785db8 # v2
|
2021-08-19 17:09:11 +03:00
|
|
|
id: command
|
|
|
|
|
|
|
|
# Init path depending on which command is run
|
|
|
|
- name: Init path
|
|
|
|
id: git-path
|
2023-01-16 16:37:58 +03:00
|
|
|
run: |
|
2021-08-19 17:09:11 +03:00
|
|
|
if ${{ startsWith(steps.command.outputs.arg1, '/') }}; then
|
2023-01-16 16:37:58 +03:00
|
|
|
echo "path=${{ github.workspace }}${{steps.command.outputs.arg1}}" >> $GITHUB_OUTPUT
|
2021-08-19 17:09:11 +03:00
|
|
|
else
|
2023-01-16 16:37:58 +03:00
|
|
|
echo "path=${{ github.workspace }}${{steps.command.outputs.arg2}}" >> $GITHUB_OUTPUT
|
2021-08-19 17:09:11 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Init branch
|
2023-06-01 18:50:56 +03:00
|
|
|
uses: xt0rted/pull-request-comment-branch@d97294d304604fa98a2600a6e2f916a84b596dc7 # v1
|
2021-08-19 17:09:11 +03:00
|
|
|
id: comment-branch
|
2023-01-16 16:37:58 +03:00
|
|
|
|
2021-08-19 17:09:11 +03:00
|
|
|
process:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: init
|
|
|
|
|
|
|
|
steps:
|
2023-08-07 12:20:05 +03:00
|
|
|
- name: Restore cached git repository
|
2023-12-26 13:19:40 +03:00
|
|
|
uses: buildjet/cache@e376f15c6ec6dc595375c78633174c7e5f92dc0e # v3
|
2023-08-07 12:20:05 +03:00
|
|
|
with:
|
|
|
|
path: .git
|
|
|
|
key: git-repo
|
|
|
|
|
2021-08-19 17:09:11 +03:00
|
|
|
- name: Checkout ${{ needs.init.outputs.head_ref }}
|
2023-12-26 13:19:40 +03:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2021-08-19 17:09:11 +03:00
|
|
|
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
|
2023-08-07 12:20:05 +03:00
|
|
|
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.2
|
2021-08-19 17:09:11 +03:00
|
|
|
id: package-engines-versions
|
|
|
|
with:
|
2023-08-07 12:20:05 +03:00
|
|
|
fallbackNode: '^20'
|
|
|
|
fallbackNpm: '^9'
|
2021-08-19 17:09:11 +03:00
|
|
|
|
|
|
|
- name: Set up node ${{ steps.package-engines-versions.outputs.nodeVersion }}
|
2023-12-26 13:19:40 +03:00
|
|
|
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v3
|
2021-08-19 17:09:11 +03:00
|
|
|
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
|
2023-10-10 14:07:34 +03:00
|
|
|
env:
|
|
|
|
CYPRESS_INSTALL_BINARY: 0
|
2023-12-26 13:19:40 +03:00
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2021-08-19 17:09:11 +03:00
|
|
|
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 }}
|
2023-06-01 18:50:56 +03:00
|
|
|
git commit --signoff -m 'chore(assets): Recompile assets'
|
2021-08-19 17:09:11 +03:00
|
|
|
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
|
2023-12-26 13:19:40 +03:00
|
|
|
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
|
2021-08-19 17:09:11 +03:00
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
repository: ${{ github.event.repository.full_name }}
|
|
|
|
comment-id: ${{ github.event.comment.id }}
|
2023-06-01 18:50:56 +03:00
|
|
|
reactions: "-1"
|