Skip to content

Commit

Permalink
ci: Labelling wip [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakutoc committed Dec 4, 2024
1 parent de3e884 commit b07e9ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/labelling-when-code-review-completed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
id: data
uses: actions/github-script@v7
env:
DATA: ${{ fromJSON(steps.packages_name.outputs.PACKAGES_NAME) }}
DATA: ${{ steps.packages_name.outputs.PACKAGES_NAME }}
with:
result-encoding: string
script: |
const data = JSON.parse(process.env.DATA) || [];
const data = JSON.parse(process.env.DATA || []) ;
if (!data.length) {
console.log('Empty state');
Expand Down

0 comments on commit b07e9ef

Please sign in to comment.