Skip to content

Bump Fleece to get fix for noisy signal handler #40

Bump Fleece to get fix for noisy signal handler

Bump Fleece to get fix for noisy signal handler #40

Workflow file for this run

on:
workflow_call: # So it can be used by our other repos
pull_request: # And also be used for itself
types: [opened]
branches: ["release/**"]
paths:
- "C/**"
- "Crypto/**"
- "LiteCore/**"
- "MSVC/**"
- "Networking/**"
- "Replicator/**"
- "REST/**"
- "vendor/fleece"
workflow_dispatch: # manual trigger via GitHub UI
jobs:
warn-release:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `This is a release branch and commits are restricted.
Please confirm this PR is one of the following:
- [ ] A response to a customer ask
- [ ] A change per our security policy
- [ ] A non-functional change (e.g. changes needed for building an older version)
- [ ] A bug fix for a x.y.0 release
- [ ] A change that has been granted an exception (please comment)`
})