Skip to content

Commit

Permalink
switch to boolean value instead of test
Browse files Browse the repository at this point in the history
  • Loading branch information
simskij authored Jun 21, 2022
1 parent d107a07 commit 76c3da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fi
- name: Determine type
run: |
if [ ${{ contains(github.event.*.labels.*.name, 'Type: Bug') }} ]; then
if ${{ contains(github.event.*.labels.*.name, 'Type: Bug') }}; then
echo "type=bug" >> $GITHUB_ENV
else
echo "type=story" >> $GITHUB_ENV
Expand Down

0 comments on commit 76c3da0

Please sign in to comment.