Sha256: cd8923ad2049f43e59ef9eab819ae52819616b9138d2039fd31e575b323eb50f

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

Contents

name: Merge me!

on:
  workflow_run:
    types:
      - completed
    workflows:
      - 'Verify'

jobs:
  merge-me:
    name: Merge me!
    runs-on: ubuntu-latest
    steps:
      - # It is often a desired behavior to merge only when a workflow execution
        # succeeds. This can be changed as needed.
        if: ${{ github.event.workflow_run.conclusion == 'success' }}
        name: Merge me!
        uses: ridedott/merge-me-action@v2
        with:
          # Depending on branch protection rules, a  manually populated
          # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to
          # a protected branch must be used. This secret can have an arbitrary
          # name, as an example, this repository uses `DOTTBOTT_TOKEN`.
          #
          # When using a custom token, it is recommended to leave the following
          # comment for other developers to be aware of the reasoning behind it:
          #
          # This must be used as GitHub Actions token does not support pushing
          # to protected branches.
          GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
psm_dead_simple_deployment_tools-0.1.1 .github/workflows/auto-merge.yml
psm-ruby-stats-1.1.0 .github/workflows/auto-merge.yml