mirror of
https://github.com/jadolg/rocketchat-notification-action.git
synced 2026-05-31 08:37:51 +00:00
21 lines
512 B
YAML
21 lines
512 B
YAML
name: Test action
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Send plain message
|
|
uses: ./
|
|
with:
|
|
server: ${{ secrets.ROCKETCHAT_SERVER }}
|
|
auth-token: ${{ secrets.ROCKETCHAT_AUTH_TOKEN }}
|
|
user-id: ${{ secrets.ROCKETCHAT_USER_ID }}
|
|
channel: "#test-notifications-akiel"
|
|
message: "Test plain message from ${{ github.repository }}@${{ github.sha }}"
|