This Action updates all open pull requests with the latest changes from the base branches.
- uses: wechuli/pull-request-updater@v2
This action will only update the pull request branch if it is behind the base branch, the update is skipped for pull requests that are already up to date with the base branch. By default, the action will attempt to update all open pull requests in the repository. You can optionally filter for specific bases or heads of the branches you want updated (more on this on the Options section below).
The Action will by default use the $GITHUB_TOKEN
to make authenticated requests to the GitHub API. If you want to use a different token, you can set the token
input to the token you want to use. The GITHUB_TOKEN
is scoped to the repository where the workflow is executing, so if you specify a different repository, you'll need to pass a Personal Access Token or GitHub App token that has access to that repository.
A PAT will need the repo
scope to be able to update pull requests and add comments to the issues. The GITHUB_TOKEN
and in general all GitHub App tokens will need the pull-request: write
and issues: write
The action can be configured using the following inputs:
token
: The token to use to authenticate with the GitHub API. Defaults to the$GITHUB_TOKEN
repository
: The repository to update the pull requests for. Defaults to the repository where the workflow is running. If you want to update pull requests in a different repository, you'll need to pass a Personal Access Token or GitHub App token that has access to that repository.base
: The action will only update pull requests that match this base branch pattern. Default to**
which means it won't filter by base branch. This is useful if you want to update all pull requests for a specific branch, e.g.main
. The basic syntax for glob patterns matching id documented here.head
: The action will only update pull requests that match this head branch pattern. Default to**
which means it won't filter by head branch. This is useful if you want to update all pull requests for a specific branch, e.g.feature/*
.create-comments
: Whether to create a comment on the pull request when the branch is updated. Defaults totrue
. If this is set tofalse
, the action will only update the pull request branch and not create a comment. This additional comment can be useful to notify the pull request author that the branch has been updated, or if any errors occurred during the update.
- uses: wechuli/pull-request-updater@v2
- uses: wechuli/pull-request-updater@v2
with:
base: main
- uses: wechuli/pull-request-updater@v2
with:
head: feature/*
- uses: wechuli/pull-request-updater@v2
with:
base: main
head: feature/*
- uses: wechuli/pull-request-updater@v2
with:
base: main
head: feature/*
create-comments: false
Update all open pull requests for a specific head branch and base branch and use a different token from GITHUB_TOKEN
- uses: wechuli/pull-request-updater@v2
with:
base: main
head: feature/*
token: ${{ secrets.MY_TOKEN }}
Update all open pull requests for a specific head branch and base branch and use a different repository
- uses: wechuli/pull-request-updater@v2
with:
base: main
head: feature/*
token: ${{ secrets.MY_TOKEN }}
repository: my-org/my-repo
- Provide warnings in case of forks
- Provide options to choose whether to try to update fork pull requests or not
- Ability to pass an array for either head, or base branch
- Ability to pass an ignore list for either head or base
- Better logging in the steps to show exactly what is happening during execution