mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-12 17:30:19 +00:00
56d08e1b4d
Update GitHub actions to use full length commit ids for third-party actions to reduce security risk in case of vulnerabilities. Signed-off-by: StepSecurity Bot <bot@stepsecurity.io> Co-authored-by: Nikhil-Ladha <nikhilladha1999@gmail.com>
22 lines
570 B
YAML
22 lines
570 B
YAML
---
|
|
name: Assign issue to contributor
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
issue_comment:
|
|
types: [created, edited]
|
|
|
|
jobs:
|
|
assign:
|
|
name: Run self assign job
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: take the issue
|
|
# yamllint disable-line rule:line-length
|
|
uses: bdougie/take-action@1439165ac45a7461c2d89a59952cd7d941964b87 # main
|
|
with:
|
|
message: >
|
|
Thanks for taking this issue!
|
|
Let us know if you have any questions!
|
|
trigger: /assign
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|