Skip to content

Add Helm charts to install ORC #496

Add Helm charts to install ORC

Add Helm charts to install ORC #496

Workflow file for this run

name: Label issue
on:
issue_comment:
types:
- created
jobs:
clear_needinfo:
name: Clear needinfo
if: ${{ github.event.issue.user.login }} == ${{ github.event.comment.user.login }}

Check warning on line 10 in .github/workflows/label-issue.yaml

View workflow run for this annotation

GitHub Actions / Label issue

Workflow syntax warning

.github/workflows/label-issue.yaml (Line: 10, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- run: gh issue edit "$NUMBER" --remove-label "needinfo"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}