mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 07:38:13 +00:00
fix: auto deploy error (#1168)
* ci(workflows): fix auto deploy error * ci(workflows): separate send feishu bot msg * ci(workflows): send feishu message remove content text
This commit is contained in:
parent
d668aa0d92
commit
22f1b9b541
18
.github/workflows/aliyun-container-registry.yml
vendored
18
.github/workflows/aliyun-container-registry.yml
vendored
@ -82,21 +82,3 @@ jobs:
|
||||
with:
|
||||
name: image_tag
|
||||
path: image/
|
||||
|
||||
- name: text message
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: foxundermoon/feishu-action@v2
|
||||
with:
|
||||
url: ${{ secrets.PR_FEISHU_BOT_WEBHOOK_URL }}
|
||||
msg_type: text
|
||||
content: |
|
||||
text: |
|
||||
地址:${{ github.event.pull_request.html_url }}
|
||||
标题:${{ github.event.pull_request.title }}
|
||||
内容:${{ github.event.pull_request.body }}
|
||||
分支:${{ github.event.pull_request.head.ref }}
|
||||
触发者:${{ github.triggering_actor }}
|
||||
----------------------------------------------
|
||||
正在自动部署环境-稍后访问地址:http://${{ secrets.deploy_host }}:1${{ github.event.number }}
|
||||
-----------------------------------------------
|
||||
请及时更新任务系统的任务状态:https://tasks.nocobase.com/
|
||||
|
28
.github/workflows/auto_send_feishu_bot_msg.yml
vendored
Normal file
28
.github/workflows/auto_send_feishu_bot_msg.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: Auto send feishu bot msg
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: [ "Aliyun Container Registry" ]
|
||||
types:
|
||||
- "completed"
|
||||
|
||||
jobs:
|
||||
send_feishu_bot_msg:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: pr deploy text message
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: foxundermoon/feishu-action@v2
|
||||
with:
|
||||
url: ${{ secrets.PR_FEISHU_BOT_WEBHOOK_URL }}
|
||||
msg_type: text
|
||||
content: |
|
||||
text: |
|
||||
地址:${{ github.event.pull_request.html_url }}
|
||||
标题:${{ github.event.pull_request.title }}
|
||||
分支:${{ github.event.pull_request.head.ref }}
|
||||
触发者:${{ github.triggering_actor }}
|
||||
----------------------------------------------
|
||||
正在自动部署环境-稍后访问地址:http://${{ secrets.deploy_host }}:1${{ github.event.number }}
|
||||
-----------------------------------------------
|
||||
请及时更新任务系统的任务状态:https://tasks.nocobase.com/
|
Loading…
Reference in New Issue
Block a user