Files
rocketchat-notification-action/.github/workflows/test.yml
T
Jorge Alberto Díaz Orozco (Akiel) 300c715940 Add github workflow to test the action
2026-03-23 21:19:39 +01:00

21 lines
502 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 }}
user: ${{ secrets.ROCKETCHAT_USER }}
password: ${{ secrets.ROCKETCHAT_PASSWORD }}
channel: "#test-notifications-akiel"
message: "Test plain message from ${{ github.repository }}@${{ github.sha }}"