Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 07f45530c1 | |||
|
|
b80081e616 | ||
| 4af6061100 | |||
| 10f5799da2 |
@@ -11,7 +11,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
renovate:
|
renovate:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ghcr.io/renovatebot/renovate:43.2.4
|
container: ghcr.io/renovatebot/renovate:43.2.6
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
@@ -21,4 +21,5 @@ jobs:
|
|||||||
RENOVATE_CONFIG_FILE: "renovate-config.json"
|
RENOVATE_CONFIG_FILE: "renovate-config.json"
|
||||||
LOG_LEVEL: "info"
|
LOG_LEVEL: "info"
|
||||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
|
||||||
|
|
||||||
@@ -125,4 +125,5 @@ return [
|
|||||||
|
|
||||||
'notice' => env('APP_NOTICE', ''),
|
'notice' => env('APP_NOTICE', ''),
|
||||||
'version' => env('APP_VERSION', 'dev'),
|
'version' => env('APP_VERSION', 'dev'),
|
||||||
|
'commit' => env('APP_COMMIT', ''),
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -25,6 +25,13 @@
|
|||||||
</section>
|
</section>
|
||||||
<section class="border-t border-t-gray-600 pt-8 flex justify-between text-xs items-center flex-col sm:flex-row">
|
<section class="border-t border-t-gray-600 pt-8 flex justify-between text-xs items-center flex-col sm:flex-row">
|
||||||
<div class="mb-3 sm:mb-0">@includeSVG('logo.svg', 'width:10rem;margin-top:-0.2rem;color:#DDD')</div>
|
<div class="mb-3 sm:mb-0">@includeSVG('logo.svg', 'width:10rem;margin-top:-0.2rem;color:#DDD')</div>
|
||||||
<div>Made with ❤️ © {{ date('Y') }} STEMMechanics • v{{ config('app.version') }}</div>
|
@php $commit = config('app.commit'); @endphp
|
||||||
|
<div>
|
||||||
|
Made with ❤️ © {{ date('Y') }} STEMMechanics
|
||||||
|
• v{{ config('app.version') }}
|
||||||
|
@if(!empty($commit))
|
||||||
|
({{ substr($commit, 0, 10) }})
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
Reference in New Issue
Block a user