Skip to content

Commit

Permalink
Update R2 GHA (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
zihyeon08 authored Aug 24, 2024
1 parent 1eadc57 commit 7af23ae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/on-hackathon-r2-verified.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
issue_comment:
types:
- created
inputs:
onlyissueclose:
description: 'Value indicating whether the issue should be closed or not'
required: true
default: 'true'
workflow_dispatch:
inputs:
issue-number:
Expand Down Expand Up @@ -77,6 +82,7 @@ jobs:
$inspected = "true"
$verified = ("${{ github.event.comment.body }}".StartsWith("/ok")) ? "true" : "false"
$invalid = ("${{ github.event.comment.body }}".StartsWith("/invalid")) ? "true" : ""
$invalid = ("${{ github.event.comment.user.login }}" -eq "${{ github.event.issue.assignee.login }}") ? "" : "true"
}
echo "issueNumber=$($result.issueNumber)" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf-8 -Append
Expand Down

0 comments on commit 7af23ae

Please sign in to comment.