Analyzing marked PR for conflicts #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analyze PR conflicts | |
run-name: Analyzing marked PR for conflicts | |
on: | |
workflow_dispatch: | |
jobs: | |
analyze-conflicts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v3 | |
with: | |
ref: master | |
fetch-depth: 0 | |
- name: Start conflict analyzer | |
uses: shpingalet007/conflictor@v0 | |
with: | |
repository: ${{ github.event.repository.full_name }} | |
deploy-label: deploy.dev | |
main-branch: master | |
create-graph: true | |
create-json: true |