mirror of
https://github.com/rustfs/rustfs.git
synced 2026-05-06 22:28:16 +08:00
71 lines
2.3 KiB
YAML
71 lines
2.3 KiB
YAML
# Copyright 2026 RustFS Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
name: CLA Check
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, synchronize, reopened]
|
|
merge_group:
|
|
types: [checks_requested]
|
|
issue_comment:
|
|
types: [created, edited]
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
issues: write
|
|
checks: write
|
|
|
|
jobs:
|
|
cla:
|
|
if: ${{ github.event_name != 'issue_comment' || github.event.issue.pull_request }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Report CLA result for merge queue
|
|
if: github.event_name == 'merge_group'
|
|
uses: actions/github-script@v8
|
|
with:
|
|
script: |
|
|
await github.rest.checks.create({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'CLA Check',
|
|
head_sha: context.sha,
|
|
status: 'completed',
|
|
conclusion: 'success',
|
|
output: {
|
|
title: 'CLA requirements satisfied for merge queue',
|
|
summary: 'Queued pull requests must satisfy the required CLA check before they enter the merge queue. This reports the existing CLA result on the merge-group SHA.'
|
|
}
|
|
});
|
|
|
|
- name: Create token for rustfs/cla
|
|
if: github.event_name != 'merge_group'
|
|
id: registry-token
|
|
uses: actions/create-github-app-token@v3
|
|
with:
|
|
app-id: ${{ vars.CLA_BOT_APP_ID }}
|
|
private-key: ${{ secrets.CLA_BOT_APP_PRIVATE_KEY }}
|
|
owner: ${{ github.repository_owner }}
|
|
repositories: cla
|
|
permission-contents: write
|
|
|
|
- name: Run CLA Bot
|
|
if: github.event_name != 'merge_group'
|
|
uses: overtrue/cla-bot@v0.0.9
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
registry-token: ${{ steps.registry-token.outputs.token }}
|