Skip to content

Commit

Permalink
Fix syntax error in k8s release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Riddle <driddle@vmware.com>
  • Loading branch information
joyvuu-dave authored and Winnie Kwon committed Nov 28, 2022
1 parent 5b97033 commit 6d46d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/k8sRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: |
echo wasRelease=$(curl -s https://api.github.com/repos/kubernetes/kubernetes/releases/latest | jq -r '.published_at|fromdateiso8601 > now-86400') >> $GITHUB_OUTPUT
- name: Create issue
if: ${{ steps.release-check.outputs.wasRelease }} == 'true'
if: ${{ steps.release-check.outputs.wasRelease == 'true' }}
uses: imjohnbo/issue-bot@v3
with:
labels: "kind/required"
Expand Down

0 comments on commit 6d46d52

Please sign in to comment.