Check Potential Conflicts #20
Workflow file for this run
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: "Check Potential Conflicts" | |
on: | |
- pull_request_target | |
- pull_request_review | |
permissions: | |
contents: read | |
pull-requests: write | |
# Enforce other not needed permissions are off | |
actions: none | |
checks: none | |
deployments: none | |
issues: none | |
packages: none | |
repository-projects: none | |
security-events: none | |
statuses: none | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check for potential conflicts | |
uses: PastaPastaPasta/potential-conflicts-checker-action@0.1.9 | |
with: | |
ghToken: "${{ secrets.GITHUB_TOKEN }}" | |
- name: validate potential conflicts | |
run: wget https://raw.githubusercontent.com/dashpay/dash/develop/.github/workflows/handle_potential_conflicts.py && pip3 install hjson && python3 handle_potential_conflicts.py "$conflicts" |