forked from opensearch-project/opensearch-build
-
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.
Signed-off-by: Prudhvi Godithi <[email protected]>
- Loading branch information
1 parent
dba0d1f
commit dd14f4d
Showing
1 changed file
with
8 additions
and
46 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 |
---|---|---|
|
@@ -13,82 +13,54 @@ on: | |
- info | ||
- warning | ||
- debug | ||
schedule: | ||
- cron: 0 1 * * * | ||
|
||
jobs: | ||
list-manifest-versions: | ||
if: github.repository == 'opensearch-project/opensearch-build' | ||
if: github.repository == 'prudhvigodithi/opensearch-build' | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: opensearch-project/opensearch-build | ||
ref: main | ||
repository: prudhvigodithi/opensearch-build | ||
ref: public | ||
- id: set-matrix | ||
# produces a list of major versions, e.g. ["1.4.0","2.10.0","2.6.0","2.7.0","2.8.0","2.9.0","3.0.0"] | ||
run: echo "::set-output name=matrix::$(ls manifests/**/opensearch*.yml | cut -d'/' -f2 | grep '0$' | grep -v '[0-9]0$' | sort | uniq | jq -R -s -c 'split("\n")[:-1]')" | ||
run: echo "::set-output name=matrix::$(ls manifests/2.11.0/opensearch-2.11.0.yml | cut -d'/' -f2 | grep '0$' | grep -v '[0-9]0$' | sort | uniq | jq -R -s -c 'split("\n")[:-1]')" | ||
component-release-issue: | ||
needs: list-manifest-versions | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
entry: | ||
- {repo: OpenSearch} | ||
- {repo: alerting} | ||
- {repo: anomaly-detection} | ||
- {repo: asynchronous-search} | ||
- {repo: common-utils} | ||
- {repo: cross-cluster-replication} | ||
- {repo: geospatial} | ||
- {repo: index-management} | ||
- {repo: job-scheduler} | ||
- {repo: k-NN} | ||
- {repo: neural-search} | ||
- {repo: ml-commons} | ||
- {repo: notifications} | ||
- {repo: observability} | ||
- {repo: performance-analyzer} | ||
- {repo: performance-analyzer-rca} | ||
- {repo: reporting} | ||
- {repo: security} | ||
- {repo: security-analytics} | ||
- {repo: sql} | ||
release_version: ${{ fromJson(needs.list-manifest-versions.outputs.matrix) }} | ||
steps: | ||
- name: GitHub App token | ||
id: github_app_token | ||
uses: tibdex/[email protected] | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.APP_PRIVATE_KEY }} | ||
installation_id: 22958780 | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Check if build repo release issue exists | ||
id: check_if_build_repo_issue_exists | ||
uses: actions-cool/issues-helper@v3 | ||
with: | ||
actions: 'find-issues' | ||
repo: opensearch-project/opensearch-build | ||
repo: prudhvigodithi/opensearch-build | ||
token: ${{ steps.github_app_token.outputs.token }} | ||
issue-state: 'open' | ||
title-includes: '[RELEASE] Release version ${{ matrix.release_version }}' | ||
- name: Check out plugin repo | ||
uses: actions/checkout@v3 | ||
with: | ||
path: plugin-repo | ||
repository: opensearch-project/${{ matrix.entry.repo }} | ||
repository: prudhvigodithi/${{ matrix.entry.repo }} | ||
- name: Check if plugin repo release issue exists | ||
if: steps.check_if_build_repo_issue_exists.outputs.issues != '[]' | ||
id: check_if_plugin_repo_issue_exists | ||
uses: actions-cool/issues-helper@v3 | ||
with: | ||
actions: 'find-issues' | ||
repo: opensearch-project/${{ matrix.entry.repo }} | ||
repo: prudhvigodithi/${{ matrix.entry.repo }} | ||
token: ${{ steps.github_app_token.outputs.token }} | ||
title-includes: '[RELEASE] Release version ${{ matrix.release_version }}' | ||
- name: Replace Placeholders | ||
|
@@ -97,17 +69,7 @@ jobs: | |
# Read the file contents and replace the placeholders | ||
file_path="../opensearch-build/.github/ISSUE_TEMPLATE/component_release_template.md" | ||
RELEASE_VERSION="${{ matrix.release_version }}" | ||
RELEASE_ISSUE_NUMBER=$(echo '${{ steps.check_if_build_repo_issue_exists.outputs.issues }}' | jq '.[0].number') | ||
RELEASE_ISSUE_NUMBER=$(echo "${{ steps.check_if_build_repo_issue_exists.outputs.issues }}" | jq -r '.[0].number') | ||
RELEASE_ISSUE="https://github.com/opensearch-project/opensearch-build/issues/${RELEASE_ISSUE_NUMBER}" | ||
RELEASE_VERSION_X=$(echo "${{ matrix.release_version }}" | awk -F'.' '{print $1}').x | ||
sed -e "s|{{RELEASE_VERSION}}|${RELEASE_VERSION}|g" -e "s|{{RELEASE_ISSUE}}|${RELEASE_ISSUE}|g" -e "s|{{RELEASE_VERSION_X}}|${RELEASE_VERSION_X}|g" "$file_path" > "$file_path.tmp" && mv "$file_path.tmp" "$file_path" | ||
- name: Create component release issue from file | ||
if: steps.check_if_plugin_repo_issue_exists.outputs.issues == '[]' | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: '[RELEASE] Release version ${{ matrix.release_version }}' | ||
content-filepath: ../opensearch-build/.github/ISSUE_TEMPLATE/component_release_template.md | ||
labels: | | ||
v${{ matrix.release_version }} | ||
token: ${{ steps.github_app_token.outputs.token }} | ||
repository: opensearch-project/${{ matrix.entry.repo }} |