-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automation component release issue: Fix the bugs (#3745)
Signed-off-by: Prudhvi Godithi <[email protected]>
- Loading branch information
1 parent
8f19baf
commit 6087e36
Showing
2 changed files
with
18 additions
and
18 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 |
---|---|---|
|
@@ -58,24 +58,24 @@ jobs: | |
- {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 | ||
- uses: dblock/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ steps.github_app_token.outputs.token }} | ||
VERSION: ${{ matrix.release_version }} | ||
id: build-repo-release-issue | ||
with: | ||
search_existing: all | ||
update_existing: false | ||
filename: .github/ISSUE_TEMPLATE/release_template.md | ||
- 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: Check out build repo | ||
uses: actions/checkout@v3 | ||
- name: Check out plugin repo | ||
|
@@ -100,7 +100,7 @@ jobs: | |
token: ${{ steps.github_app_token.outputs.token }} | ||
title-includes: '[RELEASE] Release version ${{ matrix.release_version }}' | ||
- name: Create Issue From File | ||
if: steps.check_if_issue_exists.issues == '[]' | ||
if: steps.check_if_issue_exists.outputs.issues == '[]' | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: '[RELEASE] Release version ${{ matrix.release_version }}' | ||
|
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 |
---|---|---|
|
@@ -53,24 +53,24 @@ jobs: | |
- {repo: opensearch-dashboards-functional-test} | ||
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 | ||
- uses: dblock/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ steps.github_app_token.outputs.token }} | ||
VERSION: ${{ matrix.release_version }} | ||
id: build-repo-release-issue | ||
with: | ||
search_existing: all | ||
update_existing: false | ||
filename: .github/ISSUE_TEMPLATE/release_template.md | ||
- 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: Check out build repo | ||
uses: actions/checkout@v3 | ||
- name: Check out plugin repo | ||
|
@@ -95,7 +95,7 @@ jobs: | |
token: ${{ steps.github_app_token.outputs.token }} | ||
title-includes: '[RELEASE] Release version ${{ matrix.release_version }}' | ||
- name: Create Issue From File | ||
if: steps.check_if_issue_exists.issues == '[]' | ||
if: steps.check_if_issue_exists.outputs.issues == '[]' | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: '[RELEASE] Release version ${{ matrix.release_version }}' | ||
|