We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b335c commit ccdd857Copy full SHA for ccdd857
.github/workflows/check-cla.yml
@@ -18,6 +18,7 @@ jobs:
18
with urllib.request.urlopen(req) as response:
19
return json.loads(response.read().decode('utf-8'))
20
prCommits = jsonRequest('https://api.github.com/repos/juce-framework/JUCE/pulls/${{ github.event.number }}/commits')
21
+ print(f'Commit info:\n{json.dumps(prCommits, indent=4)}')
22
allAuthors = [commit[authorType]['login'] for authorType in ['author', 'committer'] for commit in prCommits if commit[authorType]]
23
uniqueAuthors = [name for name in list(set(allAuthors)) if name != 'web-flow']
24
if (len(uniqueAuthors) == 0):
0 commit comments