From the course: Learning GitHub Actions
Unlock the full course today
Join today to access over 24,200 courses taught by industry experts.
Manage pull requests - GitHub Tutorial
From the course: Learning GitHub Actions
Manage pull requests
- [Instructor] Pull requests also known as PRS are used to facilitate conversations around code. Typically, a PR is generated when someone wants to merge code from one repository branch into another. But they're also widely used when one developer has made an update in a clone repository and wants to let the original developer know about the change with the goal of merging it into the original repository. The PR features on GitHub are great for this purpose because they allow the owner of the repo to review the potential changes, make comments, and if all goes well, merge the code into the repository. However, managing pool requests can be tedious. Fortunately, we can use GitHub actions to automate just about all of the steps needed to accept and merge a pull request. And this scenario we'll use a workflow that approves and merges pull requests based on specific criteria. First, we'll run some tests to make sure the…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
-
-
-
-
-
(Locked)
Use an action from the Marketplace4m 6s
-
(Locked)
Use an action from a repository2m 25s
-
(Locked)
Passing arguments to an action4m 6s
-
(Locked)
Using environment variables5m 10s
-
(Locked)
Using secrets4m 1s
-
(Locked)
Using artifacts4m 7s
-
(Locked)
Manage pull requests3m 30s
-
(Locked)
Challenge: Develop a workflow that creates an artifact57s
-
(Locked)
Solution: Develop a workflow that creates an artifact8m 6s
-
(Locked)
-
-
-