-
Notifications
You must be signed in to change notification settings - Fork 499
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FR] Add base pipeline to trigger react (#2768)
(cherry picked from commit c443aad)
- Loading branch information
1 parent
f38f1da
commit e8c6ec5
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Trigger REACT Buildkite Pipeline | ||
|
||
on: | ||
push: | ||
branches: [ "main", "7.*", "8.*" ] | ||
paths: | ||
- 'rules/**/*.toml' | ||
pull_request: | ||
branches: [ "*" ] | ||
paths: | ||
- 'rules/**/*.toml' | ||
|
||
jobs: | ||
trigger_buildkite: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger a Buildkite REACT Build | ||
run: | | ||
curl -X POST "https://api.buildkite.com/v2/organizations/elastic/pipelines/react/builds" \ | ||
-H "Authorization: Bearer ${{ secrets.REACT_BUILDKITE_API_TOKEN }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{ | ||
"commit": "HEAD", | ||
"branch": "main", | ||
"message": ":github: Triggered from a DR GitHub Action", | ||
"env": { | ||
"GITHUB_COMMIT_HASH": "${{ github.sha }}", | ||
"GITHUB_HEAD_BRANCH": "${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || github.ref_name }}", | ||
"GITHUB_SRC_BRANCH": "${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}" | ||
} | ||
}' |