Skip to content

Commit

Permalink
actions: implement predict-conflicts actions (#4645)
Browse files Browse the repository at this point in the history
* add predict-conflicts.yml

* remove commented out permission
  • Loading branch information
PastaPastaPasta authored Dec 30, 2021
1 parent 19149f5 commit 58b2605
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/predict-conflicts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Check Potential Conflicts"
on: pull_request

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 potential conflicts
uses: outsideris/potential-conflicts-checker-action@0.1.0
with:
ghToken: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 58b2605

Please sign in to comment.