generated from userver-framework/service_template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into cla-update
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "CLA Assistant" | ||
'on': | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened, closed, synchronize] | ||
|
||
jobs: | ||
CLAssistant: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "CLA Assistant" | ||
if: startsWith(github.event.comment.body, 'I hereby agree to the terms | ||
of the CLA available at') || github.event_name == 'pull_request_target' | ||
uses: cla-assistant/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
with: | ||
path-to-signatures: ' realmedium_sample.json' | ||
path-to-document: 'https://github.com/userver-framework/realmedium_sample/blob/develop/CONTRIBUTING.md' | ||
branch: 'develop' | ||
remote-organization-name: userver-framework | ||
remote-repository-name: CLAs | ||
custom-pr-sign-comment: 'I hereby agree to the terms of the CLA available | ||
at: https://yandex.ru/legal/cla/' |