Skip to content

Commit

Permalink
updated workflow by removing older version functions !
Browse files Browse the repository at this point in the history
  • Loading branch information
kunjgit authored May 9, 2024
1 parent b38aa25 commit 8fe9c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/close_old_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
script: |
const olderIssueNumbers = '${{ steps.fetch_issues.outputs.older_issues }}'.split(',');
const olderIssueNumbers = Buffer.from('${{ steps.fetch_issues.outputs.older_issues }}', 'utf-8').toString().split(',');
for (const issueNumber of olderIssueNumbers) {
// Get the issue details
Expand Down

0 comments on commit 8fe9c54

Please sign in to comment.