-
-
Notifications
You must be signed in to change notification settings - Fork 836
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.x' into feature/2.x/ext-emoji-add-settings-cdn
# Conflicts: # extensions/emoji/js/src/forum/addComposerAutocomplete.js
- Loading branch information
Showing
1,216 changed files
with
28,035 additions
and
18,117 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 |
---|---|---|
|
@@ -23,3 +23,6 @@ indent_size = 2 | |
|
||
[*.neon] | ||
indent_style = tab | ||
|
||
[{install,update}.php] | ||
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Build Install Packages | ||
|
||
on: | ||
release: | ||
types: [released] | ||
|
||
env: | ||
VERSION: ${{ github.event.release.tag_name }} | ||
PHP_VERSIONS: '8.2 8.3' | ||
INSTALL_PACKAGES_INPUTS: '{ "flarum_version": "{0}", "php_versions": "{1}" }' | ||
|
||
jobs: | ||
delay: | ||
name: Wait for packagist to publish new packages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: sleep 30m | ||
|
||
build: | ||
name: Build Installation Packages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger build in flarum/installation-packages | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: Build Flarum Install Packages | ||
repo: flarum/installation-packages | ||
token: ${{ secrets.PACKAGES_BUILD_TOKEN }} | ||
inputs: ${{ format(env.INSTALL_PACKAGES_INPUTS, env.VERSION, env.PHP_VERSIONS) }} |
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
Oops, something went wrong.