-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (23 loc) · 1 KB
/
branch-builder.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Branch Builder
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches: [ main ]
tags-ignore: "**"
workflow_dispatch:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} # github.head_ref for pull_request event and github.ref_name for push event
SLACK_BOT_TOKEN: ${{ secrets.SLACK_TEST_TOKEN }}
SLACK_CHANNEL_ID: ${{ secrets.SLACK_TEST_CHANNEL_ID }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Slack message with default settings
id: basic-message
uses: ./
with:
channel: ${{ env.SLACK_CHANNEL_ID }}
text: 'Test message from <https://github.com/${{ github.repository }}|`${{ github.repository }}`>:\n\nMessage sent from: <https://github.com/${{ github.repository }}/compare/main...${{ env.BRANCH_NAME }}|`${{ env.BRANCH_NAME }}`>\nWorkflow Log: <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}|Run ${{ github.run_id }}>'