We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6997a6 + e74aa57 commit 2d3d508Copy full SHA for 2d3d508
.github/workflows/claim-namespace.yml
@@ -35,7 +35,13 @@ jobs:
35
endpoint: https://open-vsx.org/admin/api/namespace/${{steps.get_namespace.outputs.namespace}}/members?token=${{secrets.OPENVSX_TOKEN}}
36
configuration: '{ "method": "GET" }'
37
- id: namespace_members
38
- run: echo "members=${{ toJSON(fromJSON(steps.get_namespace_data.outputs.fetchApiData).namespaceMemberships) }}" >> "$GITHUB_OUTPUT"
+ uses: actions/github-script@v7
39
+ env:
40
+ DATA: ${{ steps.get_namespace_data.outputs.fetchApiData }}
41
+ with:
42
+ script: |
43
+ const json = JSON.parse(process.env.DATA);
44
+ core.setOutput('members', JSON.stringify(json.namespaceMemberships));
45
- id: make_owner
46
uses: actions/github-script@v7
47
env:
0 commit comments