/merge-workflows

Primary LanguageMakefileApache License 2.0Apache-2.0

merge-workflows

Collection of merge workflows.

Description

A collection of merge workflows implemented as Reusable Workflows for GitHub Actions. It provides the following workflows:

  • GitHub Actions: Merges a pull request for updating Actions and Reusable Workflows.

These workflows are ideal for the pull request created by Dependabot version updates. The merge workflows and Dependabot ensures that your repository automatically keeps up with the latest releases of the packages and applications it depends on.

Usage

GitHub Actions

jobs:
  call:
    if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]' }}
    uses: tmknom/merge-workflows/.github/workflows/github-actions.yml@v0
    with:
      pull-request: ${{ github.event.pull_request.number }}
    permissions:
      contents: write
      pull-requests: write

Related projects

Release notes

See GitHub Releases.