Skip to content

Commit

Permalink
Merge branch 'dev' into dev-a
Browse files Browse the repository at this point in the history
  • Loading branch information
Crebs authored Jan 27, 2025
2 parents d089d03 + bf7ca64 commit c11f3a2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
static-analysis:
runs-on: macos-15
steps:
- name: Check Write Permissions
- name: Check Write Permission
uses: octokit/[email protected]
id: check_permissions
id: check_permission
with:
route: GET /repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Debug Permissions Response
- name: Debug Permission Response
run: |
echo "Permissions raw responsen: ${{ steps.check_permissions.outputs.data }}"
- name: Validate Write Permissions
echo "Permission raw response: ${{ steps.check_permissions.outputs.data }}"
- name: Validate Write Permission
run: |
permission=$(echo "${{ fromJson(steps.check_permissions.outputs.data).permission }}")
echo "User ${{ github.actor }} has permissions: $permission"
Expand Down Expand Up @@ -57,17 +57,17 @@ jobs:
outputs:
libs: ${{ steps.test-orchestrator.outputs.libs }}
steps:
- name: Check Write Permissions
- name: Check Write Permission
uses: octokit/[email protected]
id: check_permissions
id: check_permission
with:
route: GET /repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Debug Permissions Response
- name: Debug Permission Response
run: |
echo "Permissions raw responsen: ${{ steps.check_permissions.outputs.data }}"
- name: Validate Write Permissions
echo "Permission raw response: ${{ steps.check_permissions.outputs.data }}"
- name: Validate Write Permission
run: |
permission=$(echo "${{ fromJson(steps.check_permissions.outputs.data).permission }}")
echo "User ${{ github.actor }} has permissions: $permission"
Expand Down

0 comments on commit c11f3a2

Please sign in to comment.