Skip to content

sdfddfs

sdfddfs #43

Workflow file for this run

name: Is Organization Member Example
on:
issues:
types: [opened, labeled]
jobs:
is-member:
name: Is org member?
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Check if organization member
id: is_organization_member
uses: zuchka/[email protected]
with:
username: ${{ github.event.issue.user.login }}
teammates: 20k-ultra|char8|coffee-cup|dbanys|FarazPatankar|gschier|half0wl|JakeCooper|jitachi|melissa-hale|ndneighbor|ohrgaard|pierre-borckmans|railway-bot|tacLog|trif0lium|zuchka
- name: Create Comment
if: |

Check failure on line 22 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Is Organization Member Example

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 22, Col: 13): Unrecognized named-value: 'is_organization_member'. Located at position 1 within expression: is_organization_member.outputs.result == 'false' .github/workflows/main.yml (Line: 26, Col: 13): Unrecognized named-value: 'is_organization_member'. Located at position 1 within expression: is_organization_member.outputs.result == 'true'
${{ is_organization_member.outputs.result == 'false' }}
run: echo User Does Not Belong to testorg
- name: Create Comment 2
if: |
${{ is_organization_member.outputs.result == 'true' }}
run: echo User Belongs to testorg