mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-12 17:23:38 +00:00
* ci: make coderabbit less chatty * ci: disable high level summary * ci: disable reviews on style PRs * ci: fake tests on ignored paths --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Ankush Menat <ankush@frappe.io>
29 lines
492 B
YAML
29 lines
492 B
YAML
# Tests are skipped for these files but github doesn't allow "passing" hence this is required.
|
|
|
|
name: Skipped Patch Test
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**.js"
|
|
- "**.css"
|
|
- "**.md"
|
|
- "**.html"
|
|
- "**.csv"
|
|
- 'crowdin.yml'
|
|
- '.coderabbit.yml'
|
|
- '.mergify.yml'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Patch Test
|
|
|
|
steps:
|
|
- name: Pass skipped tests unconditionally
|
|
run: "echo Skipped"
|