chore: update branding in action.yml #17
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: Test Run for Action | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-action: | |
name: Running Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
webhook-url: "https://example.com/webhook" | |
message-title: "Test Title" | |
message-body: "Test Body" | |
card-color: "GREEN" | |
buttons: | | |
Button 1 Text, https://example.com/button1 | |
Button 2 Text, https://example.com/button2 | |
dry-run: "true" | |
output-payload: "true" |