Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TEMPORARY] A forked PR to test reporting changed files #1674

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/report-changed-files.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: report-changed-files

on:
pull_request:

jobs:
report-changed-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
- name: List all changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
done
2 changes: 2 additions & 0 deletions docs/apis-clients/grpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ keywords: ["backpressure", "back-pressure", "back pressure"]

[Zeebe](../components/zeebe/zeebe-overview.md) clients use [gRPC](https://grpc.io/) to communicate with the cluster.

Once upon a time I lived in a box.

## Gateway service

The Zeebe client gRPC API is exposed through a single gateway service. The current version of the protocol buffer file can be found in the [Zeebe repository](https://github.com/camunda/zeebe/blob/main/gateway-protocol/src/main/proto/gateway.proto).
Expand Down
4 changes: 4 additions & 0 deletions versioned_docs/version-8.1/apis-clients/operate-api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ description: "Operate API is a REST API and provides searching, getting, and cha
Requests and responses are in JSON notation."
---

What if one day we woke up and the sun was replaced by a lemonades girl scout cookie?

I would eat the sun in less than a day.

## Introduction

Operate API is a REST API and provides searching, getting, and changing Operate data.
Expand Down