-
Notifications
You must be signed in to change notification settings - Fork 16
/
action.yml
28 lines (28 loc) · 1016 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "buf-breaking"
description: >
Check that the Input location has no breaking changes compared to the "against" location.
branding:
icon: alert-triangle
color: blue
inputs:
# For more on Buf Inputs:
# https://docs.buf.build/inputs#specifying-an-input
input:
description: "The Input path. Defaults to the root of the current repository."
default: "."
# For more on "against" in breaking change detection:
# https://docs.buf.build/breaking/usage#run-breaking-change-detection
against:
description: "The Input to check compatibility against."
required: true
buf_input_https_username:
description: "The username for the repository to check compatibility against."
default: ${{ github.actor }}
buf_input_https_password:
description: "The password for the repository to check compatibility against."
default: ${{ github.token }}
buf_token:
description: "The buf authentication token used for private inputs."
runs:
using: "node12"
main: "./dist/main.js"