chore(deps-dev): Bump the npm-development group across 1 directory with 15 updates #157
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
| # SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital | |
| # SPDX-License-Identifier: MIT | |
| name: "Contributor License Agreement" | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened,closed,synchronize] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| require-contributor-license-agreement: | |
| name: "Require Contributor License Agreement" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Contributor License Agreement" | |
| 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/github-action@v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| path-to-signatures: 'signatures/version1/cla.json' | |
| create-file-commit-message: 'Creating file for storing CLA Signatures' | |
| signed-commit-message: '$contributorName has signed the CLA in $owner/$repo#$pullRequestNo' | |
| path-to-document: 'https://github.com/Telefonica/markdown-confluence-sync-action/blob/master/.github/CLA.md' | |
| branch: 'cla-signatures' | |
| # the below is the list of users who are allowed to sign the CLA without any check | |
| allowlist: renovate,renovate[bot] |