forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'POCCoordinatorStatsFinal' into POCCoordinatorStats
Signed-off-by: sahil <61558528+buddharajusahil@users.noreply.github.com>
- Loading branch information
Showing
972 changed files
with
26,120 additions
and
5,500 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 |
---|---|---|
|
@@ -19,4 +19,5 @@ BWC_VERSION: | |
- "2.7.0" | ||
- "2.7.1" | ||
- "2.8.0" | ||
- "2.8.1" | ||
- "2.9.0" |
Validating CODEOWNERS rules …
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 @@ | ||
* @reta @anasalkouz @andrross @reta @Bukhtawar @CEHENKLE @dblock @gbbafna @setiah @kartg @kotwanikunal @mch2 @nknize @owaiskazi19 @Rishikesh1159 @ryanbogan @saratvemulapalli @shwetathareja @dreamer-89 @tlfeng @VachaShah @dbwiddis | ||
* @reta @anasalkouz @andrross @reta @Bukhtawar @CEHENKLE @dblock @gbbafna @setiah @kartg @kotwanikunal @mch2 @nknize @owaiskazi19 @Rishikesh1159 @ryanbogan @saratvemulapalli @shwetathareja @dreamer-89 @tlfeng @VachaShah @dbwiddis @sachinpkale |
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,49 @@ | ||
name: Add comment | ||
on: | ||
issues: | ||
types: | ||
- labeled | ||
jobs: | ||
add-comment: | ||
if: github.event.label.name == 'poc' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Add comment | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
### POC Checklist: | ||
Please go through the following checklist to ensure these items are taken into account while designing the POC. | ||
- [ ] Supports safe upgrade paths from all supported BWC versions to the current version | ||
- [ ] Supports compatibility with all plugins | ||
- [ ] opensearch-alerting | ||
- [ ] opensearch-anomaly-detection | ||
- [ ] opensearch-asynchronous-search | ||
- [ ] opensearch-cross-cluster-replication | ||
- [ ] opensearch-geospatial | ||
- [ ] opensearch-index-management | ||
- [ ] opensearch-job-scheduler | ||
- [ ] opensearch-knn | ||
- [ ] opensearch-ml | ||
- [ ] opensearch-notifications | ||
- [ ] opensearch-notifications-core | ||
- [ ] opensearch-observability | ||
- [ ] opensearch-performance-analyzer | ||
- [ ] opensearch-reports-scheduler | ||
- [ ] opensearch-security | ||
- [ ] opensearch-sql | ||
- [ ] Supports lucene upgrades across minor lucene versions | ||
- [ ] Supports lucene upgrades across major lucene versions | ||
- [ ] Supports lucene upgrades across underlying lucene codec bumps (Eg: Lucene95Codec -> Lucene96Codec) | ||
- [ ] Supports wire compatibility of OpenSearch | ||
- [ ] Plan to measure performance degradation/improvement (if any) | ||
- [ ] Plan to document any user facing changes introduced by this feature | ||
- [ ] Ensure working and passing CI | ||
Thank you for your contribution! | ||
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,28 @@ | ||
name: Close Stalled PRs | ||
on: | ||
schedule: | ||
- cron: '15 15 * * *' # Run every day at 15:15 UTC / 7:15 PST / 8:15 PDT | ||
permissions: | ||
pull-requests: write | ||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: GitHub App token | ||
id: github_app_token | ||
uses: tibdex/github-app-token@v1.5.0 | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.APP_PRIVATE_KEY }} | ||
installation_id: 22958780 | ||
- name: Stale PRs | ||
uses: actions/stale@v8 | ||
with: | ||
repo-token: ${{ steps.github_app_token.outputs.token }} | ||
stale-pr-label: 'stalled' | ||
stale-pr-message: 'This PR is stalled because it has been open for 30 days with no activity. Remove stalled label or comment or this will be closed in 7 days.' | ||
close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.' | ||
days-before-pr-stale: 30 | ||
days-before-pr-close: 7 | ||
days-before-issue-stale: -1 | ||
days-before-issue-close: -1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.