Add 'web/app/themes/badegg/' from commit 'b31aa7550b02a4516fdf161f53dc7666854c9a14'
git-subtree-dir: web/app/themes/badegg git-subtree-mainline:b862ff9755git-subtree-split:b31aa7550b
This commit is contained in:
23
web/app/themes/badegg/.github/labeler.yml
vendored
Normal file
23
web/app/themes/badegg/.github/labeler.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
build:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- vite.config.js
|
||||
dependencies:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- package-lock.json
|
||||
javascript:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- resources/js/**/*.js
|
||||
php:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- functions.php
|
||||
- app/**/*.php
|
||||
- resources/views/**/*.php
|
||||
views:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- index.php
|
||||
- resources/views/**/*.php
|
||||
23
web/app/themes/badegg/.github/renovate.json
vendored
Normal file
23
web/app/themes/badegg/.github/renovate.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"baseBranches": [
|
||||
"main"
|
||||
],
|
||||
"commitMessageAction": "⬆️ Bump",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"extends": [
|
||||
"config:recommended",
|
||||
"schedule:weekly"
|
||||
],
|
||||
"rangeStrategy": "bump",
|
||||
"packageRules": [
|
||||
{
|
||||
"matchUpdateTypes": [
|
||||
"minor",
|
||||
"patch",
|
||||
"pin"
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"timezone": "America/Detroit"
|
||||
}
|
||||
18
web/app/themes/badegg/.github/workflows/discourse.yml
vendored
Normal file
18
web/app/themes/badegg/.github/workflows/discourse.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
name: Post release topic on Discourse
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
post:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: roots/discourse-topic-github-release-action@main
|
||||
with:
|
||||
discourse-api-key: ${{ secrets.DISCOURSE_RELEASES_API_KEY }}
|
||||
discourse-base-url: ${{ secrets.DISCOURSE_BASE_URL }}
|
||||
discourse-author-username: ben
|
||||
discourse-category: 11
|
||||
discourse-tags:
|
||||
releases
|
||||
11
web/app/themes/badegg/.github/workflows/labeler.yml
vendored
Normal file
11
web/app/themes/badegg/.github/workflows/labeler.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
name: "Pull Request Labeler"
|
||||
on:
|
||||
- pull_request_target
|
||||
|
||||
jobs:
|
||||
triage:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/labeler@v5
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
91
web/app/themes/badegg/.github/workflows/main.yml
vendored
Normal file
91
web/app/themes/badegg/.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
name: Main
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
node:
|
||||
name: Node ${{ matrix.node }}
|
||||
runs-on: ubuntu-latest
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
strategy:
|
||||
matrix:
|
||||
node: ['20']
|
||||
|
||||
steps:
|
||||
- name: Checkout the project
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup the Node ${{ matrix.node }} environment on ${{ runner.os }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Install dependencies using npm
|
||||
run: npm install
|
||||
|
||||
- name: Build and compile assets
|
||||
run: |
|
||||
npm run build
|
||||
cat public/build/manifest.json
|
||||
|
||||
- name: Validate theme.json
|
||||
run: |
|
||||
THEME_JSON="public/build/assets/theme.json"
|
||||
|
||||
if [ ! -f "$THEME_JSON" ]; then
|
||||
echo "❌ theme.json not found"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
jq -e '
|
||||
(.settings.color.palette | length > 0) and
|
||||
(.settings.typography.fontFamilies | length > 0) and
|
||||
(.settings.typography.fontSizes | length > 0)
|
||||
' "$THEME_JSON" 2>&1 || {
|
||||
echo "❌ Invalid theme.json structure or missing required values"
|
||||
exit 1
|
||||
}
|
||||
|
||||
php:
|
||||
name: PHP ${{ matrix.php }}
|
||||
runs-on: ubuntu-latest
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
strategy:
|
||||
matrix:
|
||||
php: ['8.2']
|
||||
|
||||
steps:
|
||||
- name: Checkout the project
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup the PHP ${{ matrix.php }} environment on ${{ runner.os }}
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
coverage: xdebug
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Restore the Composer cache directory
|
||||
id: composercache
|
||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ steps.composercache.outputs.dir }}
|
||||
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
|
||||
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
|
||||
|
||||
- name: Install Composer dependencies
|
||||
run: composer install --no-progress --prefer-dist --optimize-autoloader --no-suggest
|
||||
|
||||
- name: Run Pint
|
||||
run: vendor/bin/pint --test
|
||||
Reference in New Issue
Block a user