-
Notifications
You must be signed in to change notification settings - Fork 16
/
action.yml
35 lines (35 loc) · 1.17 KB
/
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
29
30
31
32
33
34
35
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."
required: false
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."
required: false
default: ${{ github.actor }}
buf_input_https_password:
description: "The password for the repository to check compatibility against."
required: false
default: ${{ github.token }}
buf_token:
description: "The buf authentication token used for private inputs."
required: false
outputs:
results:
description: "The generated breaking change messages with the file annotations."
runs:
using: "node16"
main: "./dist/main.js"