mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 21:37:41 +00:00
32 lines
987 B
YAML
32 lines
987 B
YAML
name: Push Downstream V1
|
|
on:
|
|
push:
|
|
branches: [v1]
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
push-downstream:
|
|
timeout-minutes: 5
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/github-script@v7
|
|
env:
|
|
ACTOR: ${{ github.actor }}
|
|
MESSAGE: ${{ github.event.head_commit.message }}
|
|
SHA: ${{ github.sha }}
|
|
with:
|
|
github-token: ${{ secrets.DOWNSTREAM_TOKEN }}
|
|
script: |
|
|
const { ACTOR, MESSAGE, SHA } = process.env;
|
|
const result = await github.rest.actions.createWorkflowDispatch({
|
|
owner: '${{ secrets.DOWNSTREAM_OWNER }}',
|
|
repo: '${{ secrets.DOWNSTREAM_REPO }}',
|
|
workflow_id: '${{ secrets.DOWNSTREAM_WORKFLOW_ID }}',
|
|
ref: 'main',
|
|
inputs: {
|
|
sha: SHA,
|
|
actor: ACTOR,
|
|
message: MESSAGE
|
|
}
|
|
});
|