mirror of
https://github.com/jadolg/rocketchat-notification-action.git
synced 2026-07-11 04:37:45 +00:00
0c797cc482
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v7
|
|
|
|
- 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 }}"
|