-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
785 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# editorconfig.org | ||
|
||
# WordPress Coding Standards | ||
# https://make.wordpress.org/core/handbook/coding-standards/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 4 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[{*.json,*.yml}] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Build, test & measure | ||
|
||
on: | ||
workflow_call: | ||
pull_request: | ||
push: | ||
branches: | ||
['main'] | ||
|
||
jobs: | ||
call-workflow-build-test-measure: | ||
uses: figuren-theater/code-quality/.github/workflows/build-test-measure.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Issue gardening for figuren.theater | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
jobs: | ||
call-workflow-ft-issue-gardening: | ||
uses: figuren-theater/.github/.github/workflows/issue-gardening.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: 'pre-Release Changelog Update' | ||
|
||
on: | ||
workflow_call: | ||
release: | ||
types: [prereleased] | ||
|
||
jobs: | ||
call-workflow-update-changelog: | ||
uses: figuren-theater/.github/.github/workflows/prerelease-changelog-update.yml@main | ||
secrets: inherit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Draft or update the next release | ||
|
||
on: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- main | ||
# pull_request event is required only for autolabeler | ||
pull_request: | ||
# Only following types are handled by the action, but one can default to all as well | ||
types: [opened, reopened, synchronize] | ||
# pull_request_target event is required for autolabeler to support PRs from forks | ||
# pull_request_target: | ||
# types: [opened, reopened, synchronize] | ||
|
||
jobs: | ||
call-workflow-release-drafter: | ||
uses: figuren-theater/.github/.github/workflows/release-drafter.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/build/ | ||
/node_modules | ||
/vendor | ||
*.sql | ||
*.tar.gz | ||
*.zip | ||
/wiki | ||
.vscode | ||
|
||
# Generated via bin/transform-readme.php | ||
/readme.txt | ||
/.wp-env.override.json | ||
|
||
# misc | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# is created during composer install, | ||
# when package is tested | ||
# and not running within ft-platform | ||
/wp-content/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [Unreleased](https://github.com/figuren-theater/ft-themes/compare/1.1.0...HEAD) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,82 @@ | ||
{ | ||
"name": "figuren-theater/ft-themes", | ||
"description": "WordPress Themes usable in the figuren.theater Multisite network.", | ||
"homepage": "https://websites.fuer.figuren.theater", | ||
"type": "metapackage", | ||
"keywords": ["wordpress", "themes", "full-site-editing", "blockthemes"], | ||
"license": "GPL-3.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "figuren.theater", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Carsten Bach", | ||
"email": "[email protected]", | ||
"homepage": "https://carsten-bach.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/figuren-theater/ft-themes/issues", | ||
"source": "https://github.com/figuren-theater/ft-themes" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/figuren-theater/twentytwentytwo-ft-core" | ||
}, | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/figuren-theater/twentytwenty-ft-core" | ||
}, | ||
"license": "GPL-3.0-or-later", | ||
"type": "metapackage", | ||
"keywords": [ | ||
"wordpress", | ||
"themes", | ||
"full-site-editing", | ||
"blockthemes" | ||
], | ||
"authors": [ | ||
{ | ||
"type": "composer", | ||
"url" : "https://wpackagist.org" | ||
"name": "figuren.theater", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Carsten Bach", | ||
"email": "[email protected]", | ||
"homepage": "https://carsten-bach.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"homepage": "https://websites.fuer.figuren.theater", | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/figuren-theater/ft-themes/issues", | ||
"source": "https://github.com/figuren-theater/ft-themes" | ||
}, | ||
"require": { | ||
"figuren-theater/twentytwentytwo-ft-core": "*", | ||
"figuren-theater/twentytwenty-ft-core": "*", | ||
"figuren-theater/twentytwenty-ft-core": "dev-main", | ||
"figuren-theater/twentytwentytwo-ft-core": "dev-main", | ||
"wpackagist-theme/archeo": "^1.0", | ||
"wpackagist-theme/avant-garde": "^1.2", | ||
"wpackagist-theme/blockbase": "^3.1", | ||
"wpackagist-theme/blockmag": "^1.0", | ||
"wpackagist-theme/bright-mode": "^1.0", | ||
"wpackagist-theme/course": "^1", | ||
"wpackagist-theme/catch-fse": "^1.6", | ||
"wpackagist-theme/course": "^1", | ||
"wpackagist-theme/davis-blocks": "^0.2", | ||
"wpackagist-theme/loudness": "^1", | ||
"wpackagist-theme/miniblock-ooak": "^1.0", | ||
"wpackagist-theme/oaknut":"1.0", | ||
"wpackagist-theme/oaknut": "1.0", | ||
"wpackagist-theme/pacer": "^1.0", | ||
"wpackagist-theme/pendant": "^1.0", | ||
"wpackagist-theme/poe": "^0.4", | ||
"wpackagist-theme/quadrat": "^1.1", | ||
"wpackagist-theme/riverbank": "^1.0", | ||
"wpackagist-theme/sampler": "^1.2", | ||
"wpackagist-theme/skatepark": "^1.0", | ||
"wpackagist-theme/tove": "^0.8", | ||
"wpackagist-theme/twentytwenty": "^2.1", | ||
"wpackagist-theme/twentytwentyone": "^1.7", | ||
"wpackagist-theme/twentytwentytwo": "^1.3", | ||
"wpackagist-theme/twentytwentythree": "^1.0", | ||
"wpackagist-theme/tove": "^0.8", | ||
"wpackagist-theme/twentytwentytwo": "^1.3", | ||
"wpackagist-theme/wabi": "^1.1", | ||
"wpackagist-theme/wei": "^1.0" | ||
}, | ||
"require-dev": { | ||
"ergebnis/composer-normalize": "^2.31" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/figuren-theater/twentytwentytwo-ft-core" | ||
}, | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/figuren-theater/twentytwenty-ft-core" | ||
}, | ||
{ | ||
"type": "composer", | ||
"url": "https://wpackagist.org" | ||
} | ||
], | ||
"config": { | ||
"allow-plugins": { | ||
"composer/installers": true, | ||
"ergebnis/composer-normalize": true | ||
} | ||
} | ||
} |
Oops, something went wrong.