amezick / writing-javascript-actions

https://lab.github.com/githubtraining/github-actions:-writing-javascript-actions
0 stars 0 forks source link

Start here! #1

Open github-learning-lab[bot] opened 4 years ago

github-learning-lab[bot] commented 4 years ago

Hi there πŸ‘‹!

Hello @amezick, I'm so excited to teach you how to create your own GitHub Actions πŸ˜„

Prerequisites

We will be using Node.js to build our action and GitHub to consume our action. This presents us with a hybrid environment -- the Node.js runtime environment and the virtual machine used by GitHub Actions -- that you may not be used to if you've taken other Learning Lab courses.

Before we can get started there are a few things you need to setup on your local machine

  1. Install Node.js for your operating system.
  2. Ensure you have a text editor installed. I'll be using Visual Studio Code, and although you are free to use your editor of choice you should be aware that using a different editor will result in your screen not matching my examples. Here are some editor options for you:
    1. Visual Studio Code (recommended)
    2. Atom
    3. Sublime Text
  3. Lastly, you're going to need a local installation of Git so that you can interact with this repository as you write code.

Getting started

In this repository we will be diving into the world of writing GitHub Actions! I will guide you through the process of writing a custom GitHub Action using the JavaScript programming language.

You may be asking yourself, "what are actions and is JavaScript the only language used to create GitHub Actions?"

Currently, there are two supported ways to create your own GitHub Actions:

As you can see we aren't necessarily limited to JavaScript even though it is the focal point for this course.

Creating vs consuming actions

Although we are going to focus on creating and consuming a custom action, in this course we will also be consuming some actions that have been made public to us. Because your workflows will most likely do the same, I found it important to show you where to look for actions that already exist.

After all, for each time we need to reinvent the wheel for our specific use-case there are a handful of times when we are better off using a wheel that's already made!

Using actions and Learning Lab

In other courses, you may have noticed that some behaviors take me longer to respond to than others. In this course, many of the behaviors we'll see demonstrated will be related to our GitHub Actions workflow. Those workflows sometimes take longer to complete, up to several minutes. Don't be concerned if I take a few minutes to respond, or if I respond too quickly. Sometimes, I'll let you know what the workflow will say before it finishes! Please wait for the workflows to finish before moving on to your next step.

If you aren't already familiar, it may be a good idea to go through the Introduction to GitHub Learning Lab.

Preparing your repository

Actions are enabled on your repository by default, but we still have to tell our repository to use them. We do this by creating a workflow file in our repository.

A workflow file can be thought of as the recipe for automating a task. They house the start to finish instructions, in the form of jobs and steps, for what should happen based on specific triggers.

These individual steps take one of two forms.

πŸ“–Read more about workflows


If at any point you're expecting a response and don't see one, refresh the page.

github-learning-lab[bot] commented 4 years ago

:keyboard: Activity: Create a pull request to prepare the repository

  1. Create a new workflow file titled my-workflow.yml by using the instructions below, or this quicklink.
    • Go to the Actions tab.
    • Choose the Set up a workflow yourself option, located on the top right hand corner of the screen.
    • Change the name of the file from main.yml to my-workflow.yml
  2. Commit the workflow to a new branch.
  3. Create a pull request titled Initial workflow.

I'll respond in the new pull request when I detect it has been created.