Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/label-community-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
contents: read

steps:
# Adding this step for debug purposes
# If this works as expected, we can simplify this workflow
# and replace it with the `check-membership` step
- name: Check organization membership (test)
run: echo "${{ github.event.issue.author_association == 'MEMBER' }}"
- name: Check organization membership
id: check-membership
uses: actions/github-script@v7
Expand Down Expand Up @@ -55,4 +60,4 @@ jobs:
labels: ['community']
});

console.log(`Added "community" label to issue by ${issueAuthor}`);
console.log(`Added "community" label to issue by ${issueAuthor}`);
Loading