[add-lint-and-ci] - added lint, ci and boilerplate for plugin building

This commit is contained in:
Guilherme Leme
2024-06-19 12:34:32 -03:00
parent 9496076bab
commit a2b1373008
15 changed files with 470 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
name: Merge conflict check
on:
push:
pull_request_target:
types:
- opened
- synchronize
permissions:
contents: read
jobs:
main:
permissions:
pull-requests: write # for eps1lon/actions-label-merge-conflict to label PRs
runs-on: ubuntu-latest
steps:
- name: Check for dirty pull requests
uses: eps1lon/actions-label-merge-conflict@v3
with:
dirtyLabel: "status: conflict"
repoToken: "${{ secrets.GITHUB_TOKEN }}"
commentOnDirty: |
This pull request has conflicts ☹
Please resolve those so we can review the pull request.
Thanks.