We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d40ade commit 8cf6176Copy full SHA for 8cf6176
.github/workflows/flarum-release-notification.yml
@@ -0,0 +1,17 @@
1
+name: Notify Flarum on Release
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ notify-flarum:
9
+ uses: FriendsOfFlarum/extension-releases/.github/workflows/REUSABLE_flarum-release-notification.yml@2.x
10
+ with:
11
+ changelog: ${{ github.event.release.body || '' }}
12
+ tag_name: ${{ github.event.release.tag_name }}
13
+ release_url: ${{ github.event.release.html_url }}
14
+ author: ${{ github.event.release.author.login || github.actor || '' }}
15
+ ref: ${{ github.ref }}
16
+ secrets:
17
+ flarum_api_token: ${{ secrets.FLARUM_EXTENSION_UPDATES_API_TOKEN }}
0 commit comments