From 56295c1c8c33c556e6f1a7acd1fa9169b077aa05 Mon Sep 17 00:00:00 2001 From: speakeasy-bot Date: Tue, 16 Jul 2024 22:19:11 +0000 Subject: [PATCH] Create speakeasy tagging action workflow --- .github/workflows/tagging.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/tagging.yaml diff --git a/.github/workflows/tagging.yaml b/.github/workflows/tagging.yaml new file mode 100644 index 0000000..3ea4a0f --- /dev/null +++ b/.github/workflows/tagging.yaml @@ -0,0 +1,20 @@ +name: Speakeasy Tagging +permissions: + checks: write + contents: write + pull-requests: write + statuses: write +"on": + push: + branches: + - main + paths: [] + workflow_dispatch: {} +jobs: + tag: + uses: speakeasy-api/sdk-generation-action/.github/workflows/tag.yaml@v15 + with: + registry_tags: main + secrets: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }}