diff --git a/.gitea/workflows/cla.yml b/.gitea/workflows/cla.yml new file mode 100644 index 0000000..6634bf6 --- /dev/null +++ b/.gitea/workflows/cla.yml @@ -0,0 +1,21 @@ +name: "CLA Assistant" + +on: + pull_request: + types: [opened, synchronize] + push: + branches: [main] + +jobs: + CLA: + runs-on: ubuntu-latest + steps: + - name: "CLA Assistant" + if: github.event.action == 'opened' || github.event.action == 'synchronize' + uses: cla-assistant/github-action@v2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + path-to-signatures: 'signatures/cla.json' + path-to-document: 'https://github.com/cla-assistant/cla-assistant/blob/master/CLA.md' + branch: 'main'