feat: cond with timeout control #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Feishu Notification | |
on: | |
pull_request: | |
types: [opened] | |
issues: | |
types: [opened] | |
jobs: | |
pr-opened: | |
name: Pull Request Opened Notification | |
if: ${{ github.event_name == 'pull_request' && github.event.action == 'opened' }} | |
runs-on: self-hosted | |
steps: | |
- name: Send Feishu Message | |
env: | |
ACTIONS_FEISHU_TAG: v1.3.1 | |
INPUT_WEBHOOK: ${{ secrets.FEISHU_ROBOT_WEBHOOK_URL }} | |
INPUT_MESSAGE_TYPE: post | |
INPUT_TITLE: New Pull Request | |
INPUT_CONTENT: | | |
@${{ github.event.pull_request.user.login }} opened pull request #${{ github.event.pull_request.number }}: | |
${{ github.event.pull_request.title }} | |
See: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} | |
run: | | |
sudo apt update | |
sudo apt install wget -y | |
wget -q https://github.com/xiachufang/actions-feishu/releases/download/${{ env.ACTIONS_FEISHU_TAG }}/linux-amd64-actions-feishu.tar.gz | |
tar zxf linux-amd64-actions-feishu.tar.gz feishu | |
./feishu | |
issues-opened: | |
name: Issue Opened Notification | |
if: ${{ github.event_name == 'issues' && github.event.action == 'opened' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Feishu Message | |
env: | |
ACTIONS_FEISHU_TAG: v1.3.1 | |
INPUT_WEBHOOK: ${{ secrets.FEISHU_ROBOT_WEBHOOK_URL }} | |
INPUT_MESSAGE_TYPE: post | |
INPUT_TITLE: New Issue | |
INPUT_CONTENT: | | |
@${{ github.event.issue.user.login }} opened issues #${{ github.event.issue.number }}: | |
${{ github.event.issue.title }} | |
See: https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }} | |
run: | | |
sudo apt update | |
sudo apt install wget -y | |
wget -q https://github.com/xiachufang/actions-feishu/releases/download/${{ env.ACTIONS_FEISHU_TAG }}/linux-amd64-actions-feishu.tar.gz | |
tar zxf linux-amd64-actions-feishu.tar.gz feishu | |
./feishu |