blob: adffdd537967554813bcfbc359b5d0433a1006ea [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package recipes.fuchsia.cipd_json_roller;
message InputProperties {
// Remote URL of the repository containing the manifests to roll.
string remote = 1;
// Whether to dry-run the auto-roller (CQ+1 and abandon the change).
bool dry_run = 2;
// Message to use for the commit created. Additional footers will be appended
// to the commit message by the recipe. Required.
string commit_message = 3;
// Globs (relative to the checkout directory) matching JSON manifests that
// should be rolled.
repeated string manifest_globs = 4;
message Command {
// Path to the executable to run, relative to the checkout root.
string path = 1;
repeated string args = 2;
}
// Optional commands to run after the pins have been updated but before
// committing the changes. The commands can make changes to other files that
// will then be included in the commit.
repeated Command postprocess_commands = 5;
}