microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/apply-async-process-wait-functionality

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

flowey/flowey_core/src/node/spec.rs

19lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Type definitions from GitHub events and payloads. <https://docs.github.com/en/webhooks/webhook-events-and-payloads>
5
6use serde::Deserialize;
7use serde::Serialize;
8
9#[derive(Serialize, Deserialize)]
10pub struct Head {
11 #[serde(rename = "ref")]
12 pub head_ref: String,
13}
14
15#[derive(Serialize, Deserialize)]
16pub struct GhContextVarReaderEventPullRequest {
17 pub head: Head,
18 pub number: u32,
19}
20