From 14860b7c5488573a798d07245bff2ef5fafa86f6 Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:10:43 +0500 Subject: [PATCH 1/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index 58aed82..7a3df73 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -37,7 +37,7 @@ 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 create_bulk_issues: name: Create Bulk Issues From c349be5a9059d2df05f451fddcbfee47db4d059d Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:15:29 +0500 Subject: [PATCH 2/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index 7a3df73..924db56 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -48,7 +48,7 @@ jobs: strategy: fail-fast: false matrix: - repos: ${{fromJson(needs.repos_list.outputs.output1)}} + repos: echo needs.repos_list.outputs.list && ${{fromJson(needs.repos_list.outputs.output1)}} steps: - name: Create issue From af303804774702fc21fd394a8a3aa5aefc83de7c Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:20:24 +0500 Subject: [PATCH 3/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index 924db56..06a5f8b 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -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 @@ -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 From 7e793f2fd0646f0b7881cd498a336b6c3343649a Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:23:51 +0500 Subject: [PATCH 4/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index 06a5f8b..9d0ae7a 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -41,7 +41,9 @@ jobs: check_list: name: console list - run: echo steps.repos_list.outputs.output1 + steps: + - name: what the hell + run: echo steps.repos_list.outputs.output1 create_bulk_issues: name: Create Bulk Issues From c9815007673eb857b45f7c0fe047ea5bb5780bea Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:26:28 +0500 Subject: [PATCH 5/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index 9d0ae7a..0dd18eb 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -41,6 +41,7 @@ jobs: check_list: name: console list + runs-on: ubuntu-20.04 steps: - name: what the hell run: echo steps.repos_list.outputs.output1 From 977e7923e72a014eb2f4cb49af606ee49c25e636 Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:28:31 +0500 Subject: [PATCH 6/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index 0dd18eb..359d18d 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: what the hell - run: echo steps.repos_list.outputs.output1 + run: echo ${{steps.repos_list.outputs.output1}} create_bulk_issues: name: Create Bulk Issues From a4a34644fb0e885243990a04e222783e5122df2a Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:30:08 +0500 Subject: [PATCH 7/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index 359d18d..da00ae9 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: what the hell - run: echo ${{steps.repos_list.outputs.output1}} + run: echo ${{steps.repos_list.outputs.list}} create_bulk_issues: name: Create Bulk Issues From 815fbc4948913ffcbb1a8d90fa2fa970ff760e20 Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:31:49 +0500 Subject: [PATCH 8/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index da00ae9..f1cb955 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -41,6 +41,7 @@ jobs: check_list: name: console list + needs: repos_list runs-on: ubuntu-20.04 steps: - name: what the hell From d719c18c3ace5756dddbe69e3582f85b38d3ded4 Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Mon, 1 Jul 2024 15:33:14 +0500 Subject: [PATCH 9/9] fix: replace deprecated set-output action --- .github/workflows/bulk-issue-creator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bulk-issue-creator.yml b/.github/workflows/bulk-issue-creator.yml index f1cb955..b41a42d 100644 --- a/.github/workflows/bulk-issue-creator.yml +++ b/.github/workflows/bulk-issue-creator.yml @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: what the hell - run: echo ${{steps.repos_list.outputs.list}} + run: echo ${{needs.repos_list.outputs.output1}} create_bulk_issues: name: Create Bulk Issues