modify the application to support 250 characters instead of 200 #6
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: First Workflow | |
on: | |
workflow_dispatch: | |
issues: | |
types: [opened] | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Step 1 | |
run: echo "Step 1 complete!" | |
- name: Step 2 | |
run: echo "Step 2 complete!" | |
job2: | |
needs: job1 | |
name: Cowsays | |
runs-on: ubuntu-latest | |
steps: | |
- name: Ship it | |
uses: mscoutermarsh/cowsays-action@master | |
with: | |
text: 'ship ship ship!' | |
color: 'magenta' | |