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.
issue.author_association
1 parent e240749 commit 66317d3Copy full SHA for 66317d3
.github/workflows/label-community-issues.yml
@@ -12,6 +12,11 @@ jobs:
12
contents: read
13
14
steps:
15
+ # Adding this step for debug purposes
16
+ # If this works as expected, we can simplify this workflow
17
+ # and replace it with the `check-membership` step
18
+ - name: Check organization membership (test)
19
+ run: echo "${{ github.event.issue.author_association == 'MEMBER' }}"
20
- name: Check organization membership
21
id: check-membership
22
uses: actions/github-script@v7
@@ -55,4 +60,4 @@ jobs:
55
60
labels: ['community']
56
61
});
57
62
58
- console.log(`Added "community" label to issue by ${issueAuthor}`);
63
+ console.log(`Added "community" label to issue by ${issueAuthor}`);
0 commit comments