Skip to content

Commit

Permalink
fix: replace deprecated set-output action
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Jul 1, 2024
1 parent c349be5 commit af30380
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/bulk-issue-creator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
id: repos_list
run: |
echo "list=[${{github.event.inputs.repos_list}}]" >> $GITHUB_OUTPUT
check_list:
name: console list
run: echo steps.repos_list.outputs.output1

create_bulk_issues:
name: Create Bulk Issues
Expand All @@ -48,7 +52,7 @@ jobs:
strategy:
fail-fast: false
matrix:
repos: echo needs.repos_list.outputs.list && ${{fromJson(needs.repos_list.outputs.output1)}}
repos: ${{fromJson(needs.repos_list.outputs.output1)}}

steps:
- name: Create issue
Expand Down

0 comments on commit af30380

Please sign in to comment.