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 7ace227 + 448b9a4 commit 6ba7bafCopy full SHA for 6ba7baf
.github/workflows/deploy.yml
@@ -10,9 +10,16 @@ jobs:
10
if: ${{ !github.event.release.prerelease && github.event.release.target_commitish == 'master' }}
11
runs-on: ubuntu-latest
12
steps:
13
+ - uses: octokit/[email protected]
14
+ id: get_collaborator_permission
15
+ with:
16
+ route: GET /repos/:owner/:repo/collaborators/:username/permission
17
+ owner: Bandwidth
18
+ repo: csharp-sdk
19
+ username: ${{ github.event.release.author.login }}
20
+ - run: echo "Permission - ${{ fromJson(steps.get_collaborator_permission.outputs.data).permission }}"
21
- uses: actions/checkout@v2
22
- uses: actions/setup-dotnet@v1
23
with:
24
dotnet-version: '2.2.x'
25
- run: dotnet build
- - run: echo ${{ github.event }}
0 commit comments