Skip to content

Commit

Permalink
Merge pull request #49 from isd-sgcu/dev
Browse files Browse the repository at this point in the history
update main
  • Loading branch information
bookpanda authored Jul 21, 2024
2 parents c292b0e + 45f4b65 commit 39a58f4
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
branches:
- main
- dev
push:
branches:
- main
- dev
- send-message

env:
SERVICE_NAME: rpkm67-gateway
Expand Down Expand Up @@ -61,6 +66,13 @@ jobs:
cache-from: type=registry,ref=${{ env.IMAGE_NAME }}:buildcache
cache-to: type=registry,ref=${{ env.IMAGE_NAME }}:buildcache,mode=max

send_message:
needs: build
uses: ./.github/workflows/send-message.yml
secrets: inherit
with:
IMAGE_TAG: ${{ needs.build.outputs.IMAGE_TAG }}

cd:
name: Continuous Deployment
needs: build
Expand Down Expand Up @@ -91,3 +103,4 @@ jobs:
with:
repository: isd-sgcu/rpkm67-devops
github_token: ${{ secrets.RPKM67_DEVOPS_TOKEN }}

32 changes: 32 additions & 0 deletions .github/workflows/send-message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Send Messages

on:
workflow_call:
inputs:
IMAGE_TAG:
required: true
type: string

jobs:
send_message:
runs-on: ubuntu-latest

steps:
- name: Send message to Discord
run: |
curl -X POST -H "Content-Type: application/json" \
-H "Authorization: Bot ${{ secrets.RPKM67_DISCORD_API_KEY }}" \
-d "{
\"content\": \"A new push has been made to the **${{ github.event.pull_request.base.ref }}** branch by ${{ github.actor }}!\",
\"embeds\": [
{
\"author\": {
\"name\": \"${{ github.actor }}\",
\"icon_url\": \"https://github.com/${{ github.actor }}.png\"
},
\"description\": \"**Service Name:** ${{ github.repository }}\n\n**Version:**\n${{ inputs.IMAGE_TAG }}\n\n**Details:**\n${{ github.event.pull_request.title || github.event.head_commit.message }}\",
\"color\": 5814783
}
]
}" \
${{ secrets.RPKM67_DISCORD_WEBHOOK_URL }}

0 comments on commit 39a58f4

Please sign in to comment.