mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
Merge pull request #54 from fleetbase/dev-main
- Uses initializer from `@fleetbase/ember-core` to globally load `soc…
This commit is contained in:
27
.github/workflows/discord_announcement.yml
vendored
Normal file
27
.github/workflows/discord_announcement.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Discord Announcement
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
tags:
|
||||
- "v*"
|
||||
jobs:
|
||||
discord_announcement:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0 # this is required to fetch all tags
|
||||
|
||||
- name: Get tag message
|
||||
id: tag
|
||||
run: echo "::set-output name=message::$(git for-each-ref refs/tags --format='%(contents)' ${{ github.ref }})"
|
||||
|
||||
- name: Send message to Discord
|
||||
uses: tsickert/discord-webhook@v5.3.0
|
||||
with:
|
||||
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||||
content: "@everyone 📦 New Fleetbase Version ${{ steps.tag.outputs.tag }} Released! 🎉 \n ${{ steps.tag.outputs.message }} \n Version: ${{ steps.tag.outputs.tag }} \n [Release Notes](https://github.com/fleetbase/fleetbase/releases/tag/${{ steps.tag.outputs.tag }})"
|
||||
username: Fleetbase
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -11,4 +11,5 @@ api/public/storage
|
||||
api/storage/*.key
|
||||
api/storage/uploads
|
||||
api/storage/public
|
||||
api/vendor
|
||||
api/vendor
|
||||
act.sh
|
||||
2
console
2
console
Submodule console updated: df82ed4ed5...1af06bc5d3
Submodule packages/dev-engine updated: 555956cef3...623bfac55e
Submodule packages/ember-core updated: 1611502fbc...143a50f88e
Submodule packages/fleetops-data updated: d374a893ac...13836f1332
Submodule packages/fleetops-engine updated: 7e0bf128b1...63822071d5
Submodule packages/storefront-engine updated: 342bd425c3...891997b0fe
Reference in New Issue
Block a user