Deletion of 4.10.0 tag causing any workflow referencing this tag to not work #1360
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 ] | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| CLAssistant: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run CLA Check | |
| uses: jfrog/.github/actions/cla@main | |
| with: | |
| event_comment_body: ${{ github.event.comment.body }} | |
| event_name: ${{ github.event_name }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CLA_SIGN_TOKEN: ${{ secrets.CLA_SIGN_TOKEN }} |