Skip to content

Use weak self captures for refcounted continuations #38587

Use weak self captures for refcounted continuations

Use weak self captures for refcounted continuations #38587

Workflow file for this run

name: "CLA Assistant"

Check warning on line 1 in .github/workflows/cla.yml

View workflow run for this annotation

GitHub Actions / CLA Assistant

Workflow execution policy warning (evaluate mode)

On November 2, 2026, GitHub will restrict `pull_request_target` on public repositories by default. To continue allowing the event trigger, configure an Actions policy. Learn more: https://gh.io/securely-using-pull_request_target#default-policy-for-pull_request_target
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened,synchronize]
merge_group:
jobs:
CLAssistant:
runs-on: ubuntu-latest
steps:
- name: "CLA Assistant"
if: (github.event.issue.pull_request && (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA')) || github.event_name == 'pull_request_target'
uses: contributor-assistant/github-action@v2.6.1
env:
# CLA Action uses this in-built GitHub token to make the API calls for interacting with GitHub.
# It is built into Github Actions and does not need to be manually specified in your secrets store.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# The below token should have repo scope and must be manually added by you in the repository's secret
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_PERSONAL_ACCESS_TOKEN }}
with:
path-to-signatures: 'signatures/version1/cla.json'
path-to-document: 'https://www.cloudflare.com/cla/'
# branch should not be protected
branch: 'cla-signatures'
allowlist: dependabot[bot],workers-devprod
lock-pullrequest-aftermerge: false