We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8eb20 commit b244cf7Copy full SHA for b244cf7
1 file changed
.github/workflows/build.yml
@@ -19,4 +19,20 @@ jobs:
19
- name: Run Composer Install
20
run: composer install --no-interaction
21
- name: Run Tests
22
- run: vendor/bin/phpunit --testdox tests
+ run: vendor/bin/phpunit --testdox tests
23
+ - name: Slack Message
24
+ if: startsWith(github.ref, 'refs/tags/')
25
+ uses: dgoemans/slack-action@1.0.1
26
+ env:
27
+ SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
28
+ with:
29
+ title: ${{ github.workflow }}
30
+ title_link: "https://github.com/${{ github.repository }}"
31
+ channel: "releases"
32
+ text: |
33
+ Release *PHP Module* :tada:
34
+ Version: *<https://github.com/${{ github.repository }}/releases/tag/${{ github.event.release.tag_name }}|${{ github.event.release.tag_name }}>*
35
+ ${{ github.event.release.name }}
36
+
37
+ *Release notes:*
38
+ ${{ github.event.release.body }}
0 commit comments