mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [shivammathur/setup-php](https://github.com/shivammathur/setup-php) | `2.31.1` | `2.32.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `4.0.4` | `4.1.0` | | [cypress-io/github-action](https://github.com/cypress-io/github-action) | `6.7.7` | `6.7.10` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.3` | `4.6.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.0.7` | `5.3.1` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7.0.5` | `7.0.6` | | [marcelklehr/get-github-handles-from-website-action](https://github.com/marcelklehr/get-github-handles-from-website-action) | `1.0.0` | `1.0.1` | Updates `shivammathur/setup-php` from 2.31.1 to 2.32.0 - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](c541c155ee...9e72090525
) Updates `actions/setup-node` from 4.0.4 to 4.1.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4.0.4...39370e3970a6d050c480ffad4ff0ed4d3fdee5af) Updates `cypress-io/github-action` from 6.7.7 to 6.7.10 - [Release notes](https://github.com/cypress-io/github-action/releases) - [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md) - [Commits](f1f0912d39...7271bed2a1
) Updates `actions/upload-artifact` from 4.4.3 to 4.6.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](b4b15b8c7c...65c4c4a1dd
) Updates `codecov/codecov-action` from 5.0.7 to 5.3.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Commits](https://github.com/codecov/codecov-action/compare/v5.0.7...v5.3.1) Updates `peter-evans/create-pull-request` from 7.0.5 to 7.0.6 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](5e914681df...67ccf781d6
) Updates `marcelklehr/get-github-handles-from-website-action` from 1.0.0 to 1.0.1 - [Release notes](https://github.com/marcelklehr/get-github-handles-from-website-action/releases) - [Commits](a739600f6b...06b2239db0
) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: cypress-io/github-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: marcelklehr/get-github-handles-from-website-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
180 lines
6.7 KiB
YAML
180 lines
6.7 KiB
YAML
# This workflow is provided via the organization template repository
|
|
#
|
|
# https://github.com/nextcloud/.github
|
|
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
|
#
|
|
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
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 }}
|
|
base_ref: ${{ steps.comment-branch.outputs.base_ref }}
|
|
|
|
steps:
|
|
- name: Get repository from pull request comment
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
|
id: get-repository
|
|
with:
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
script: |
|
|
const pull = await github.rest.pulls.get({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
pull_number: context.issue.number
|
|
});
|
|
|
|
const repositoryName = pull.data.head?.repo?.full_name
|
|
console.log(repositoryName)
|
|
return repositoryName
|
|
|
|
- name: Disabled on forks
|
|
if: ${{ fromJSON(steps.get-repository.outputs.result) != github.repository }}
|
|
run: |
|
|
echo 'Can not execute /compile on forks'
|
|
exit 1
|
|
|
|
- name: Check actor permission
|
|
uses: skjnldsv/check-actor-permission@69e92a3c4711150929bca9fcf34448c5bf5526e7 # v2
|
|
with:
|
|
require: write
|
|
|
|
- name: Add reaction on start
|
|
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.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 # v2
|
|
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 "path=${{steps.command.outputs.arg1}}" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "path=${{steps.command.outputs.arg2}}" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Init branch
|
|
uses: xt0rted/pull-request-comment-branch@e8b8daa837e8ea7331c0003c9c316a64c6d8b0b1 # v3.0.0
|
|
id: comment-branch
|
|
|
|
- name: Add reaction on failure
|
|
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
|
|
if: failure()
|
|
with:
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
repository: ${{ github.event.repository.full_name }}
|
|
comment-id: ${{ github.event.comment.id }}
|
|
reactions: '-1'
|
|
|
|
process:
|
|
runs-on: ubuntu-latest
|
|
needs: init
|
|
|
|
steps:
|
|
- name: Restore cached git repository
|
|
uses: buildjet/cache@3e70d19e31d6a8030aeddf6ed8dbe601f94d09f4 # v4.0.2
|
|
with:
|
|
path: .git
|
|
key: git-repo
|
|
|
|
- name: Checkout ${{ needs.init.outputs.head_ref }}
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
persist-credentials: true
|
|
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@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3
|
|
id: package-engines-versions
|
|
with:
|
|
fallbackNode: '^20'
|
|
fallbackNpm: '^10'
|
|
|
|
- name: Set up node ${{ steps.package-engines-versions.outputs.nodeVersion }}
|
|
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
|
|
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: Rebase to ${{ needs.init.outputs.base_ref }}
|
|
if: ${{ contains(needs.init.outputs.arg1, 'rebase') }}
|
|
run: |
|
|
git fetch origin '${{ needs.init.outputs.base_ref }}:${{ needs.init.outputs.base_ref }}'
|
|
git rebase 'origin/${{ needs.init.outputs.base_ref }}'
|
|
|
|
- name: Install dependencies & build
|
|
env:
|
|
CYPRESS_INSTALL_BINARY: 0
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
|
run: |
|
|
npm ci
|
|
npm run build --if-present
|
|
|
|
- name: Commit default
|
|
if: ${{ !contains(needs.init.outputs.arg1, 'fixup') && !contains(needs.init.outputs.arg1, 'amend') }}
|
|
run: |
|
|
git add '${{ github.workspace }}${{ needs.init.outputs.git_path }}'
|
|
git commit --signoff -m 'chore(assets): Recompile assets'
|
|
|
|
- name: Commit fixup
|
|
if: ${{ contains(needs.init.outputs.arg1, 'fixup') }}
|
|
run: |
|
|
git add '${{ github.workspace }}${{ needs.init.outputs.git_path }}'
|
|
git commit --fixup=HEAD --signoff
|
|
|
|
- name: Commit amend
|
|
if: ${{ contains(needs.init.outputs.arg1, 'amend') }}
|
|
run: |
|
|
git add '${{ github.workspace }}${{ needs.init.outputs.git_path }}'
|
|
git commit --amend --no-edit --signoff
|
|
# Remove any [skip ci] from the amended commit
|
|
git commit --amend -m "$(git log -1 --format='%B' | sed '/\[skip ci\]/d')"
|
|
|
|
- name: Push normally
|
|
if: ${{ !contains(needs.init.outputs.arg1, 'rebase') && !contains(needs.init.outputs.arg1, 'amend') }}
|
|
run: git push origin '${{ needs.init.outputs.head_ref }}'
|
|
|
|
- name: Force push
|
|
if: ${{ contains(needs.init.outputs.arg1, 'rebase') || contains(needs.init.outputs.arg1, 'amend') }}
|
|
run: git push --force origin '${{ needs.init.outputs.head_ref }}'
|
|
|
|
- name: Add reaction on failure
|
|
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
|
|
if: failure()
|
|
with:
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
repository: ${{ github.event.repository.full_name }}
|
|
comment-id: ${{ github.event.comment.id }}
|
|
reactions: '-1'
|