Skip to content

Commit

Permalink
Merge branch 'master' into test_crash_logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pinzart90 authored Feb 6, 2024
2 parents befb456 + 3893c85 commit f3cd594
Show file tree
Hide file tree
Showing 557 changed files with 280,139 additions and 11,004 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Issues_workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
#Remove the " character in the issue title and replaced with -
- name: Remove conflicting chars
uses: frabert/replace-string-action@v2.4
uses: frabert/replace-string-action@v2.5
id: remove_quotations
with:
pattern: "\""
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Remove conflicting chars
env:
ISSUE_BODY: ${{github.event.issue.body}}
uses: frabert/replace-string-action@v2.4
uses: frabert/replace-string-action@v2.5
id: remove_quotations
with:
pattern: "\""
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dynamo_post_bin_diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
echo "DIFF=$(cat ${{ github.workspace }}/bin_diff_result/result.txt)" >> $GITHUB_OUTPUT
echo "TIMESTAMP=$(date +%Y-%m-%d-%H:%M:%S)" >> $GITHUB_OUTPUT
- name: Find Comment
uses: peter-evans/find-comment@v2
uses: peter-evans/find-comment@v3
id: find_comment
with:
issue-number: ${{ steps.set_details.outputs.PR_NUMBER }}
Expand All @@ -44,14 +44,14 @@ jobs:
direction: last
- name: Create comment
if: steps.find_comment.outputs.comment-id == '' && steps.set_details.outputs.DIFF != ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ steps.set_details.outputs.PR_NUMBER }}
body: |
${{ steps.set_details.outputs.DIFF }}
- name: Update comment
if: steps.find_comment.outputs.comment-id != '' && steps.set_details.outputs.DIFF != ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.find_comment.outputs.comment-id }}
edit-mode: replace
Expand All @@ -60,7 +60,7 @@ jobs:
(♻️ Updated: ${{ steps.set_details.outputs.TIMESTAMP }})
- name: Update comment as resolved
if: steps.find_comment.outputs.comment-id != '' && steps.set_details.outputs.DIFF == ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.find_comment.outputs.comment-id }}
edit-mode: replace
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/checkout@v4
- name: Generate changelog
id: generate_changelog
uses: metcalfc/changelog-generator@v4.2.0
uses: metcalfc/changelog-generator@v4.3.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
head-ref: ${{ github.event.inputs.head-ref }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,22 @@ jobs:
acceptable_missing_info: 1

steps:
# Removes quotes before using the issue content as a script parameter
# Checkout Dynamo repo
- name: Checkout Dynamo Repo
uses: actions/checkout@v4

# Removes quotes before using the issue content as a script parameter
- name: Remove Quotes
id: remove_quotes
uses: frabert/replace-string-action@v2.4
uses: frabert/replace-string-action@v2.5
env:
ISSUE_BODY: ${{ github.event.issue.body }}
with:
pattern: "\""
string: ${{ env.ISSUE_BODY }}
replace-with: '-'

# Analyze for missing information inside the issue content
# Analyze for missing information inside the issue content
- name: Analyze Issue Body
env:
ISSUE_BODY: ${{ steps.remove_quotes.outputs.replaced }}
Expand All @@ -61,13 +65,14 @@ jobs:
echo "issue_json_string="$(pwsh .\\.github\\scripts\\get_issue_json_body.ps1 "$ISSUE_NUMBER")"" >> $GITHUB_ENV
# Checkout the IssuesTypePredicter repo (https://github.com/DynamoDS/IssuesTypePredicter)
- name: Checkout IssuesTypePredicter
- name: Checkout IssuesTypePredicter Repo
if: env.analysis_response == 'Valid'
uses: actions/checkout@v4
with:
repository: DynamoDS/IssuesTypePredicter
path: IssuesTypePredicter

# Setup dotnet
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ui_smoke_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Publish Test Report
id: test_report
if: always()
uses: dorny/test-reporter@v1.7.0
uses: dorny/test-reporter@v1.8.0
with:
name: ${{ env.CHECK_NAME }}
path: reports/report.xml
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
$pr_comment | Out-File -FilePath pr_comment.md
- name: Find Comment
if: env.PR_NUMBER != ''
uses: peter-evans/find-comment@v2
uses: peter-evans/find-comment@v3
id: find_comment
with:
issue-number: ${{ env.PR_NUMBER }}
Expand All @@ -104,13 +104,13 @@ jobs:
direction: last
- name: Create comment
if: env.PR_NUMBER != '' && steps.find_comment.outputs.comment-id == ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ env.PR_NUMBER }}
body-path: pr_comment.md
- name: Update comment
if: env.PR_NUMBER != '' && steps.find_comment.outputs.comment-id != ''
uses: peter-evans/create-or-update-comment@v3
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.find_comment.outputs.comment-id }}
edit-mode: replace
Expand Down
Loading

0 comments on commit f3cd594

Please sign in to comment.