mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-05-21 02:41:53 +02:00
47 lines
No EOL
1.6 KiB
YAML
47 lines
No EOL
1.6 KiB
YAML
# name: Build Theme
|
|
|
|
# on: [pull_request_target]
|
|
|
|
# jobs:
|
|
# build:
|
|
# runs-on: ubuntu-latest
|
|
# if: ${{ github.actor == 'dependabot[bot]' }}
|
|
# steps:
|
|
# - name: Checkout
|
|
# uses: actions/checkout@v4
|
|
# with:
|
|
# ref: "${{ github.head_ref }}"
|
|
# - name: Install dependencies and Build Theme
|
|
# uses: actions/setup-node@v4
|
|
# - run: npm install
|
|
# - run: npm run assets
|
|
# - name: Commit and push Chart.js changes
|
|
# uses: stefanzweifel/git-auto-commit-action@v5
|
|
# with:
|
|
# branch: "${{ github.head_ref }}"
|
|
# push_options: "--dry-run"
|
|
# file_pattern: "assets/lib/chart/*"
|
|
# commit_message: "📦 Update packaged ChartJS"
|
|
# - name: Commit Fuse changes
|
|
# uses: stefanzweifel/git-auto-commit-action@v5
|
|
# with:
|
|
# branch: "${{ github.head_ref }}"
|
|
# push_options: "--dry-run"
|
|
# file_pattern: "assets/lib/fuse/*"
|
|
# commit_message: "📦 Update packaged FuseJS"
|
|
# - name: Commit KaTeX changes
|
|
# uses: stefanzweifel/git-auto-commit-action@v5
|
|
# with:
|
|
# branch: "${{ github.head_ref }}"
|
|
# push_options: "--dry-run"
|
|
# file_pattern: "assets/lib/katex/*"
|
|
# commit_message: "📦 Update packaged KaTeX"
|
|
# - run: npm run build
|
|
# - name: Commit CSS changes
|
|
# uses: stefanzweifel/git-auto-commit-action@v5
|
|
# with:
|
|
# branch: "${{ github.head_ref }}"
|
|
# push_options: "--dry-run"
|
|
# file_pattern: "assets/css/compiled/main.css"
|
|
# commit_message: "💄 Rebuild CSS"
|
|
# - run: git push |