Lines Matching +full:clean +full:- +full:command
3 # SPDX-License-Identifier: Apache-2.0
8 schema;patch-schema:
11 - type: map
15 # E.g. zephyr/kernel-pipe-fix-not-k-no-wait-and-ge-min-xfer-bytes.patch
20 # The SHA-256 checksum of the patch file
25 pattern: "^[0-9a-f]{64}$"
44 # The date the patch was created, in ISO 8601 date format YYYY-MM-DD
48 format: "%Y-%m-%d"
56 # e.g. https://github.com/zephyrproject-rtos/zephyr/pull/24486
57 merge-pr:
62 # or bug report, e.g. https://github.com/zephyrproject-rtos/zephyr/issues/24485
67 # Whether the associated merge-pr has been merged
68 merge-status:
71 # The SHA-1 hash of the upstream git commit incorporating the associated merge-pr
73 merge-commit:
75 pattern: "^[0-9a-f]{40}"
77 # The date the associated merge-pr was merged, in ISO 8601 date format YYYY-MM-DD
78 merge-date:
80 format: "%Y-%m-%d"
82 # The command used to apply the change represented by the patch
83 apply-command:
92 # Custom field that may be used for any purpose. For example, if the chosen apply-patch
93 # command is able to filter based on semantic versioning and a particular patch file
99 # The top-level schema for patches.yml files
105 include: patch-schema
107 # The command used to undo local changes to each module when "west patch clean" is run
108 checkout-command:
112 # The command used to clean each module when "west patch clean" is run
113 clean-command:
115 default: "git clean -d -f -x"