Skip to content

[TASK] Update stylelint-header to v2 #534

[TASK] Update stylelint-header to v2

[TASK] Update stylelint-header to v2 #534

Workflow file for this run

name: Frontend assets
on:
pull_request:
paths:
- 'Resources/Private/Frontend/**'
jobs:
rebuild:
if: ${{ github.actor == 'renovate[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.REBUILD_ASSETS_TOKEN }}
# Prepare environment
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
cache-dependency-path: 'Resources/Private/Frontend/yarn.lock'
# Install Frontend dependencies
- name: Install Frontend dependencies
run: yarn --cwd Resources/Private/Frontend --frozen-lockfile
# Re-create Frontend dist files
- name: Re-create dist files
run: yarn --cwd Resources/Private/Frontend build
# Update PR
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[TASK] Automatically rebuild frontend assets'
commit_author: 'Elias H盲u脽ler <[email protected]>'