Skip to content

Commit 93e0d23

Browse files
feat: add CTA Assistant workflow for automated contributor agreement management (#247)
* feat: add CTA Assistant workflow for automated contributor agreement management - Add GitHub Actions workflow to automate CTA signature collection - Triggers on PR events and issue comments for signature requests - Uses WalletConnect/actions/github/cta-assistant@master - Includes required permissions for PR management and signature storage - Follows standard CTA Assistant configuration pattern Co-Authored-By: Ben Kremer <[email protected]> * fix: pin CTA Assistant action to specific commit hash - Use commit hash 7a3ca8b instead of @master for better version stability - Addresses feedback from PR review Co-Authored-By: Ben Kremer <[email protected]> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Ben Kremer <[email protected]>
1 parent 07d9ca2 commit 93e0d23

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/cta.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "CTA Assistant"
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_target:
6+
types: [opened, closed, synchronize]
7+
8+
# Required permissions
9+
permissions:
10+
actions: write
11+
contents: write # can be 'read' if signatures are in remote repository
12+
pull-requests: write
13+
statuses: write
14+
15+
jobs:
16+
CTA:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: WalletConnect/actions/github/cta-assistant@7a3ca8b
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)