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

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…

Contents