XRAY-144809 - CA command [Maven]: Add option to consider plugin deps #4008
This file contains hidden or 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
| name: "CLA Assistant" | |
| on: | |
| # issue_comment triggers this action on each comment on issues and pull requests | |
| issue_comment: | |
| types: [ created ] | |
| pull_request_target: | |
| types: [ opened,synchronize ] | |
| # explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings | |
| permissions: | |
| actions: write | |
| contents: write # this can be 'read' if the signatures are in remote repository | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| CLAssistant: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions-ecosystem/action-regex-match@v2 | |
| id: sign-or-recheck | |
| with: | |
| text: ${{ github.event.comment.body }} | |
| regex: '\s*(I have read the CLA Document and I hereby sign the CLA)|(recheck)\s*' | |
| - name: "CLA Assistant" | |
| if: ${{ steps.sign-or-recheck.outputs.match != '' || github.event_name == 'pull_request_target' }} | |
| # Alpha Release | |
| uses: cla-assistant/github-action@v2.6.1 | |
| env: | |
| # Generated and maintained by GitHub | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # JFrog organization secret | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_SIGN_TOKEN }} | |
| with: | |
| path-to-signatures: 'signed_clas.json' | |
| path-to-document: 'https://jfrog.com/cla/' | |
| remote-organization-name: 'jfrog' | |
| remote-repository-name: 'jfrog-signed-clas' | |
| # branch should not be protected | |
| branch: 'master' | |
| allowlist: bot* |