├── .github ├── dependabot.yml ├── steps │ ├── -step.txt │ ├── 0-welcome.md │ ├── 1-create-a-workflow.md │ ├── 2-add-a-job.md │ ├── 3-add-actions.md │ ├── 4-merge-your-pull-request.md │ ├── 5-trigger.md │ └── X-finish.md └── workflows │ ├── 0-welcome.yml │ ├── 1-create-a-workflow.yml │ ├── 2-add-a-job.yml │ ├── 3-add-actions.yml │ ├── 4-merge-your-pull-request.yml │ └── 5-trigger.yml ├── .gitignore ├── LICENSE └── README.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/steps/-step.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /.github/steps/0-welcome.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/steps/1-create-a-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/steps/1-create-a-workflow.md -------------------------------------------------------------------------------- /.github/steps/2-add-a-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/steps/2-add-a-job.md -------------------------------------------------------------------------------- /.github/steps/3-add-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/steps/3-add-actions.md -------------------------------------------------------------------------------- /.github/steps/4-merge-your-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/steps/4-merge-your-pull-request.md -------------------------------------------------------------------------------- /.github/steps/5-trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/steps/5-trigger.md -------------------------------------------------------------------------------- /.github/steps/X-finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/steps/X-finish.md -------------------------------------------------------------------------------- /.github/workflows/0-welcome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/workflows/0-welcome.yml -------------------------------------------------------------------------------- /.github/workflows/1-create-a-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/workflows/1-create-a-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/2-add-a-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/workflows/2-add-a-job.yml -------------------------------------------------------------------------------- /.github/workflows/3-add-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/workflows/3-add-actions.yml -------------------------------------------------------------------------------- /.github/workflows/4-merge-your-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/workflows/4-merge-your-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/5-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.github/workflows/5-trigger.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skills/hello-github-actions/HEAD/README.md --------------------------------------------------------------------------------