-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into oa.cases.add.comment
- Loading branch information
Showing
939 changed files
with
21,437 additions
and
11,024 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 |
---|---|---|
@@ -1 +1 @@ | ||
5.1.1 | ||
5.2.0 |
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
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
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
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
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
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
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
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,46 @@ | ||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
types: | ||
- closed | ||
- labeled | ||
|
||
jobs: | ||
on-merge: | ||
name: 'Label and Backport' | ||
runs-on: ubuntu-latest | ||
if: | | ||
github.event.pull_request.merged == true | ||
&& ( | ||
contains(github.event.pull_request.labels.*.name, 'backport:prev-minor') | ||
|| contains(github.event.pull_request.labels.*.name, 'backport:prev-major') | ||
|| contains(github.event.pull_request.labels.*.name, 'backport:all-open') | ||
|| contains(github.event.pull_request.labels.*.name, 'backport:auto-version') | ||
) | ||
&& ( | ||
( | ||
github.event.action == 'labeled' && ( | ||
github.event.label.name == 'backport:prev-minor' | ||
|| github.event.label.name == 'backport:prev-major' | ||
|| github.event.label.name == 'backport:all-open' | ||
|| github.event.label.name == 'backport:auto-version' | ||
) | ||
) | ||
|| (github.event.action == 'closed') | ||
) | ||
steps: | ||
- name: Checkout Actions | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: 'elastic/kibana-github-actions' | ||
ref: main | ||
path: ./actions | ||
|
||
- name: Install Actions | ||
run: npm install --production --prefix ./actions | ||
|
||
- name: Run On-Merge | ||
uses: ./actions/on-merge | ||
with: | ||
github_token: ${{secrets.KIBANAMACHINE_TOKEN}} |
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
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
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
Oops, something went wrong.