mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
1c925ed3d2
* use pull_request_target instead of pull_request Signed-off-by: Pasta <pasta@dashboost.org> * use pasta based action 0.1.1 Signed-off-by: Pasta <pasta@dashboost.org>
25 lines
540 B
YAML
25 lines
540 B
YAML
name: "Check Potential Conflicts"
|
|
on: pull_request_target
|
|
|
|
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: PastaPastaPasta/potential-conflicts-checker-action@0.1.1
|
|
with:
|
|
ghToken: "${{ secrets.GITHUB_TOKEN }}"
|