Skip to content

CliMA/.github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

.github


For Repository Maintainers

Contribution License Agreement

This organization uses a centralized reusable GitHub Actions workflow to verify whether contributors have signed the required Contribution License Agreement (CLA). The workflow lives in this .github repository and can be invoked by any repository that opts in.

Opt-In by adding the Caller Workflow to your repository

  1. Create the workflow file in the repository's root directory:
cd /path/to/repository/
mkdir -p .github/workflows
touch .github/workflows/cla.yml
  1. Paste the workflow code below inside the cla.yml file:
---
name: CLA Workflow

permissions:
  contents: write
  checks: write
  actions: write
  pull-requests: write

on:
  pull_request:
    types: [opened, reopened, synchronize]
    branches:
      - main
      - master

jobs:
  cla:
    uses: clima/.github/.github/workflows/cla_template.yml@main
      secrets: inherit

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 6