Bump Fleece to get fix for noisy signal handler #40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)` | |
| }) |