PHP Classes

File: .github/workflows/merge-me.yml

Recommend this page to a friend!
  Classes of Eric Sizemore   PHPUnit Coverage Report Check   .github/workflows/merge-me.yml   Download  
File: .github/workflows/merge-me.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHPUnit Coverage Report Check
Check code coverage using the clover xml report.
Author: By
Last change:
Date: 3 days ago
Size: 983 bytes
 

Contents

Class file image Download
# Merge Me! Documentation: https://github.com/ridedott/merge-me-action/ name: "Merge Renovate PRs" on: workflow_run: types: - "completed" workflows: - "Continuous Integration" jobs: merge-me: name: "Merge me!" runs-on: "ubuntu-latest" steps: - name: "Auto-merge" if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: "ridedott/merge-me-action@v2.10.110" with: GITHUB_LOGIN: renovate # This must be used as GitHub Actions token does not support pushing # to protected branches. # # Create a token with repository permissions: # https://github.com/settings/tokens/new?scopes=repo&description=Merge+Me!+GitHub+Actions+Workflow # # Set MERGE_TOKEN as an environment variable on your repository: # https://github.com/yourname/repo-name/settings/secrets/actions/new GITHUB_TOKEN: ${{ secrets.MERGE_TOKEN }}