6 increase message limit from 200 to 250 characters #1
Workflow file for this run
This file contains hidden or 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: My First Workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
echo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Step 1 | |
run: echo "Step 1 complete" | |
- name: Step 2 | |
run: echo "Step 2 complete" | |
cow: | |
name: Cowsays | |
runs-on: ubuntu-latest | |
steps: | |
- name: Ship it | |
uses: mscoutermarsh/cowsays-action@master | |
with: | |
text: 'Ready for prod–ship it!' | |
color: 'red' |