Philip Harrison 0e0aa93e38 Match commit metadata fragment from start of line
Updated the tests to reflect commit messages where it begins at the
start of the line so we can match `---` and `...` as being at the
start of the line.
2021-05-27 11:26:40 +01:00
2021-05-26 18:00:50 +01:00
2021-05-26 17:27:35 +01:00
2021-05-26 17:50:32 +01:00
2021-05-26 15:42:51 +01:00

Dependabot

Dependabot Pull Request Action

Name: dependabot/pull-request-action

Usage instructions

Create a workflow file that contains a step that uses: dependabot/pull-request-action@v1`, e.g.

-- .github/workflows/dependabot-prs.yml
name: Dependabot Pull Request
on: pull_request_target

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Fetch Dependabot metadata
      id: metadata
      uses: dependabot/pull-request-action
      with:
        github-token: "${{ secrets.GITHUB_TOKEN }}"

Subsequent actions will have access to steps.metadata.outputs.dependabot-updated-dependencies which will contain a JSON object with information about the changes, e.g.

[
  {
    "name": "dependabot-core",
    "type": "direct:production",
    "updateType": "version-update:semver-major"
  }
]

Note: This output will only be populated if the target Pull Request was opened by Dependabot and contains only Dependabot-created commits.

Auto-approving

NYI

Enabling GitHub automerge

NYI

Why?

NYI

Development and release process

NYI

Description
No description provided
Readme MIT 7.8 MiB
Languages
TypeScript 97.7%
JavaScript 1.4%
Shell 0.9%