From 1ed4b6ee39460fc55cd23e61e39faa77897ada82 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 7 Sep 2023 13:49:59 -0400 Subject: [PATCH] Add manual workflow for kicking off updates in client libs Starting with authzed-node and, if this works, will add the other client libs --- .github/workflows/manual-client-update.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/manual-client-update.yaml diff --git a/.github/workflows/manual-client-update.yaml b/.github/workflows/manual-client-update.yaml new file mode 100644 index 0000000..d0602f5 --- /dev/null +++ b/.github/workflows/manual-client-update.yaml @@ -0,0 +1,12 @@ +name: "Manually invoke client updates for API change" +on: + workflow_dispatch: + inputs: + buftag: + description: "Tag or commit from https://buf.build/authzed/api/tags/main" + required: true + type: "string" +jobs: + node: + name: "Invoke authzed-node action for update" + uses: "authzed/authzed-node/.github/workflows/automatic-api-update.yaml@main"