Ignore dependabot signature #9
Workflow file for this run
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
name: CLA Assistant | |
on: | |
issue_comment: | |
types: | |
- created | |
pull_request_target: | |
types: | |
- opened | |
- closed | |
- synchronize | |
workflow_call: | |
jobs: | |
CLAssistant: | |
runs-on: ubuntu-latest | |
steps: | |
- name: CLA | |
if: > | |
(github.event.comment.body == 'recheck' | |
|| github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') | |
|| github.event_name == 'pull_request_target' | |
uses: contributor-assistant/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | |
with: | |
path-to-signatures: ${{ github.repository }}/cla.json | |
path-to-document: https://github.com/${{ github.repository_owner }}/.github/blob/main/CLA.md | |
branch: cla-signatures | |
allowlist: github-actions[bot],dependabot-preview[bot],insights-engineering-bot,dependabot[bot] | |
create-file-commit-message: '🛠 Init CLA Signatures' | |
remote-organization-name: ${{ github.repository_owner }} | |
remote-repository-name: .github-private | |
signed-commit-message: '✍️ CLA signed by $contributorName in ${{ github.repository_owner }}/${{ github.repository }}' | |
custom-allsigned-prcomment: '✅ All contributors have signed the CLA' | |
custom-notsigned-prcomment: >- | |
<br/> | |
🎉 Thank you for your contribution! Before this PR can be accepted, we require that $you read and agree to our [Contributor License Agreement](https://github.com/insightsengineering/.github/blob/main/CLA.md). | |
<br/> | |
You can digitally sign the CLA by posting a comment on this Pull Request in the format shown below. This agreement will apply to this PR _as well as_ all future contributions on this repository. | |
<br/> | |
custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA' |