Name: dependabot/fetch-metadata
Extract information about the dependencies being updated by a Dependabot-generated PR.
Create a workflow file that contains a step that uses: dependabot/fetch-metadata@v2
, e.g.
# .github/workflows/dependabot-prs.yml
name: Dependabot Pull Request
on: pull_request
jobs:
dependabot:
permissions:
pull-requests: read
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
steps:
- name: Fetch Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
with:
alert-lookup: true
compat-lookup: true
github-token: "${{ secrets.PAT_TOKEN }}"
Supported inputs are:
github-token
(string)- The
GITHUB_TOKEN
secret - Defaults to
${{ github.token }}
- Note: this must be set to a personal access token (PAT) if you enable
alert-lookup
orcompat-lookup
.
- The
alert-lookup
(boolean)- If
true
, then populate thealert-state
,ghsa-id
andcvss
outputs. - Defaults to
false
- Note: the
github-token
field must be set to a personal access token (PAT).
- If
compat-lookup
(boolean)- If
true
, then populate thecompatibility-score
output. - Defaults to
false
- Note: the
github-token
field must be set to a personal access token (PAT).
- If
skip-commit-verification
(boolean)- If
true
, then the action will not expect the commits to have a verification signature. It is required to set this to 'true' in GitHub Enterprise Server - Defaults to
false
- If
skip-verification
(boolean)- If
true
, the action will not validate the user or the commit verification status - Defaults to
false
- If
Subsequent actions will have access to the following outputs:
steps.dependabot-metadata.outputs.dependency-names
- A comma-separated list of the package names updated by the PR.
steps.dependabot-metadata.outputs.dependency-type
- The type of dependency has determined this PR to be. Possible values are:
direct:production
,direct:development
andindirect
. See theallow
documentation for descriptions of each.
- The type of dependency has determined this PR to be. Possible values are:
steps.dependabot-metadata.outputs.update-type
- The highest semver change being made by this PR, e.g.
version-update:semver-major
. For all possible values, see theignore
documentation.
- The highest semver change being made by this PR, e.g.
steps.dependabot-metadata.outputs.updated-dependencies-json
- A JSON string containing the full information about each updated Dependency.
steps.dependabot-metadata.outputs.directory
- The
directory
configuration that was used by dependabot for this updated Dependency.
- The
steps.dependabot-metadata.outputs.package-ecosystem
- The
package-ecosystem
configuration that was used by dependabot for this updated Dependency.
- The
steps.dependabot-metadata.outputs.target-branch
- The
target-branch
configuration that was used by dependabot for this updated Dependency.
- The
steps.dependabot-metadata.outputs.previous-version
- The version that this PR updates the dependency from.
steps.dependabot-metadata.outputs.new-version
- The version that this PR updates the dependency to.
steps.dependabot-metadata.outputs.alert-state
- If this PR is associated with a security alert and
alert-lookup
istrue
, this contains the current state of that alert (OPEN, FIXED or DISMISSED).
- If this PR is associated with a security alert and
steps.dependabot-metadata.outputs.ghsa-id
- If this PR is associated with a security alert and
alert-lookup
istrue
, this contains the GHSA-ID of that alert.
- If this PR is associated with a security alert and
steps.dependabot-metadata.outputs.cvss
- If this PR is associated with a security alert and
alert-lookup
istrue
, this contains the CVSS value of that alert (otherwise it contains 0).
- If this PR is associated with a security alert and
steps.dependabot-metadata.outputs.compatibility-score
- If this PR has a known compatibility score and
compat-lookup
istrue
, this contains the compatibility score (otherwise it contains 0).
- If this PR has a known compatibility score and
steps.dependabot-metadata.outputs.maintainer-changes
- Whether or not the the body of this PR contains the phrase "Maintainer changes" which is an indicator of whether or not any maintainers have changed.
steps.dependabot-metadata.outputs.dependency-group
- The dependency group that the PR is associated with (otherwise it is an empty string).
Note: By default, these outputs will only be populated if the target Pull Request was opened by Dependabot and contains
only Dependabot-created commits. To override, see skip-commit-verification
/ skip-verification
.
For workflows initiated by Dependabot (github.actor == 'dependabot[bot]'
) using the pull_request_target
event, if the base ref of the pull request was created by Dependabot (github.event.pull_request.user.login == 'dependabot[bot]'
), the GITHUB_TOKEN
will be read-only and secrets are not available.
This metadata can be used along with Action's expression syntax and the GitHub CLI to create useful automation for your Dependabot PRs.
Since the dependabot/fetch-metadata
Action will set a failure code if it cannot find any metadata, you can
have a permissive auto-approval on all Dependabot PRs like so:
name: Dependabot auto-approve
on: pull_request
permissions:
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
# Checking the author will prevent your Action run failing on non-Dependabot PRs
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
- uses: actions/checkout@v4
- name: Approve a PR if not already approved
run: |
gh pr checkout "$PR_URL" # sets the upstream metadata for `gh pr status`
if [ "$(gh pr status --json reviewDecision -q .currentBranch.reviewDecision)" != "APPROVED" ];
then gh pr review --approve "$PR_URL"
else echo "PR already approved, skipping additional approvals to minimize emails/notification noise.";
fi
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
If you are using the auto-merge feature on your repository, you can set up an action that will enable Dependabot PRs to merge once CI and other branch protection rules are met. (Note that you must use a personal access token (PAT) when executing the merge instruction.)
For example, if you want to automatically merge all patch updates to Rails:
name: Dependabot auto-merge
on: pull_request
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
- name: Enable auto-merge for Dependabot PRs
if: ${{contains(steps.dependabot-metadata.outputs.dependency-names, 'rails') && steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
If you have other automation or triage workflows based on GitHub labels, you can configure an action to assign these based on the metadata.
For example, if you want to flag all production dependency updates with a label:
name: Dependabot auto-label
on: pull_request
permissions:
pull-requests: write
issues: write
repository-projects: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
- name: Add a label for all production dependencies
if: ${{ steps.dependabot-metadata.outputs.dependency-type == 'direct:production' }}
run: gh pr edit "$PR_URL" --add-label "production"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
📖 Release guide
- We expect Dependabot PRs to be passing CI and have any changes to the
dist/
folder built for production dependencies - Some development dependencies may fail the
dist/
check if they modify the Typescript compilation, these should be updated manually vianpm run build
. See thedependabot-build
action for details.
Publish a new release by running the Release - Bump Version
workflow and following the instructions on the job summary.
In a nutshell the process will be:
- Run the action to generate a version bump PR.
- Merge the PR.
- Tag that merge commit as a new release using the format
v1.2.3
. The job summary contains a URL pre-populated with the correct version for the title and tag. - Once the release is tagged, another GitHub Action workflow automatically moves the
v2
tracking tag to point to the new version.