Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 2.05 KB

README.md

File metadata and controls

39 lines (28 loc) · 2.05 KB

Task 1

Time to warm up. In your first task you will create a GitHub action that prints basic information about itself and then lists all the files that are currently in the repository

Definition of done

  • For pull request (PR) action displays the base and head branches of the PR (e.g. base: main, head: task-1)
  • For push action displays the branch and commit ref
  • Action lists the files that are in the repository

*** Remember to create a new branch for this task ***

Example output for PR: Job 1 result

Example output for Commit: Job 1 result

Hints & help

Those hints will help you start
In case you are stuck, you can use the resources listed below. Try to first look yourself. The resources are listed in the order from minimal to full help
  1. Understanding GitHub Actions
  2. PR with ready solution