Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: replace deprecated set-output action #393

Closed
10 changes: 9 additions & 1 deletion .github/workflows/bulk-issue-creator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ jobs:
- name: get repos list
id: repos_list
run: |
echo "::set-output name=list::[${{github.event.inputs.repos_list}}]"
echo "list=[${{github.event.inputs.repos_list}}]" >> $GITHUB_OUTPUT

check_list:
name: console list
needs: repos_list
runs-on: ubuntu-20.04
steps:
- name: what the hell
run: echo ${{needs.repos_list.outputs.output1}}

create_bulk_issues:
name: Create Bulk Issues
Expand Down