Last active
July 11, 2020 05:53
-
-
Save adammcarth/0e061640c79748449cb1ed085a2bd2e4 to your computer and use it in GitHub Desktop.
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
# .github/workflows/example-1.yml | |
name: My First Manual Workflow | |
on: [workflow_dispatch] | |
jobs: | |
example: | |
name: Example Job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v2 | |
- name: ... | |
run: ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment