ci: update CONTRIBUTORS and CODEOWNERS #32047
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: "Merge Conflict Finder" | |
on: [push] | |
jobs: | |
merge_conflict_job: | |
runs-on: ubuntu-latest | |
name: Find merge conflicts | |
steps: | |
# Checkout the source code so we have some files to look at. | |
- uses: actions/checkout@v3 | |
# Run the actual merge conflict finder | |
- name: Merge Conflict finder | |
uses: olivernybroe/action-conflict-finder@v4.0 | |
with: | |
exclude_dir: "node_modules/**" |