Bump actions/stale from 3 to 9 #33
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] | |
jobs: | |
claAssistant: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check signed CLA | |
if: | |
(github.event.comment.body == 'recheckcla' || | |
github.event.comment.body == 'I have read the CLA Document and I | |
hereby sign the CLA') || github.event_name == 'pull_request_target' | |
uses: cla-assistant/github-action@master | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
path-to-signatures: cla-signatures.json | |
path-to-document: https://github.com/vixshan/.github/blob/main/CLA.md | |
allowlist: | |
dependabot-preview[bot], dependabot[bot], greenkeeper[bot], *bot, | |
bot* | |
remote-organization-name: vixshan | |
remote-repository-name: .github | |
create-file-commit-message: | |
':wrench: Creating a file for storing CLA signatures' | |
signed-commit-message: | |
':wrench: @$contributorName has signed the CLA in #$pullRequestNo' | |
custom-allsigned-prcomment: '✍️ All contributors have signed the CLA' | |
custom-notsigned-prcomment: | |
'Thanks for your submission! We ask that $you sign our [Contributor | |
License | |
Agreement](https://github.com/vixshan/.github/blob/main/CLA.md) | |
before we can accept your contribution. You can sign the CLA by | |
adding a comment below using this text:' | |