Skip to content

Commit

Permalink
add workflow to trigger automation on cloud
Browse files Browse the repository at this point in the history
(cherry picked from commit 57d4f6e)
  • Loading branch information
nk-87 authored and vbotbuildovich committed Aug 31, 2023
1 parent 268f3cf commit bd20159
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/cloud-installpack-bk-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: check formatting
on:
release:
types: [published]

jobs:
trigger-bump:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
repository: redpanda-data/sparse-checkout
token: ${{ secrets.ACTIONS_BOT_TOKEN }}
path: sparse-checkout

- uses: ./sparse-checkout
with:
repository: redpanda-data/vtools
token: ${{ secrets.ACTIONS_BOT_TOKEN }}
patterns: actions
path: ghca

- name: Trigger Versions Bump Buildkite Job
uses: ./ghca/actions/buildkite-pipeline-trigger
with:
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }}
buildkite_org: redpanda
buildkite_pipeline: ${{ vars.CLOUD_PIPELINE }}
commit: HEAD
branch: ${{ vars.CLOUD_DEFAULT_BRANCH }}
message: Install Pack version bump trigger
env: '{"INSTALLPACK_BUMP": "1", "RELEASE_VERSION": "${{ github.ref_name }}"}'

0 comments on commit bd20159

Please sign in to comment.