Skip to content

Commit a8efb12

Browse files
authored
Remove is org member check (#582)
1 parent 09e9999 commit a8efb12

File tree

3 files changed

+0
-40
lines changed

3 files changed

+0
-40
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,6 @@ jobs:
1212
image: ghcr.io/viamrobotics/canon:amd64
1313

1414
steps:
15-
- name: Check if organization member
16-
id: is_organization_member
17-
if: github.event_name == 'workflow_dispatch'
18-
uses: jamessingleton/[email protected]
19-
with:
20-
organization: viamrobotics
21-
username: ${{ github.actor }}
22-
token: ${{ secrets.GITHUB_TOKEN }}
23-
24-
- name: cancelling
25-
uses: andymckay/[email protected]
26-
if: |
27-
github.event_name == 'workflow_dispatch' && steps.is_organization_member.outputs.result == 'false'
28-
2915
- name: Download Release
3016
uses: dsaltares/fetch-gh-release-asset@master
3117
with:

.github/workflows/release-candidate.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,6 @@ jobs:
2727
- name: Output Event
2828
run: echo "${{ toJSON(github.event) }}"
2929

30-
- name: Check if organization member
31-
id: is_organization_member
32-
uses: jamessingleton/[email protected]
33-
with:
34-
organization: viamrobotics
35-
username: ${{ github.actor }}
36-
token: ${{ secrets.GITHUB_TOKEN }}
37-
38-
- name: Cancelling - user not part of organization
39-
uses: andymckay/[email protected]
40-
if: |
41-
steps.is_organization_member.outputs.result == 'false'
42-
4330
- name: Install GH CLI
4431
run: |
4532
type -p curl >/dev/null || (sudo apt update && sudo apt install curl -y)

.github/workflows/release.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,6 @@ jobs:
1010
outputs:
1111
version: ${{ steps.bump_version.outputs.version }}
1212
steps:
13-
- name: Check if organization member
14-
id: is_organization_member
15-
uses: jamessingleton/[email protected]
16-
with:
17-
organization: viamrobotics
18-
username: ${{ github.actor }}
19-
token: ${{ secrets.GITHUB_TOKEN }}
20-
21-
- name: Cancelling - user not part of organization
22-
uses: andymckay/[email protected]
23-
if: |
24-
steps.is_organization_member.outputs.result == 'false'
25-
2613
- name: Checkout Code
2714
uses: actions/checkout@v4
2815

0 commit comments

Comments
 (0)