LOGBROKER-10347 Add atomicity to Write method #6083
Workflow file for this run
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
| # This script is provided by github.com/bool64/dev. | |
| name: breaking | |
| on: | |
| pull_request: | |
| env: | |
| GO111MODULE: "on" | |
| jobs: | |
| broken-changes: | |
| concurrency: | |
| group: broken-changes-${{ github.ref }} | |
| cancel-in-progress: true | |
| if: (!contains(github.event.pull_request.labels.*.name, 'broken changes')) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install gorelease | |
| run: test -e ~/go/bin/gorelease || go install golang.org/x/exp/cmd/gorelease@latest | |
| - name: Check broken API changes | |
| run: set -o pipefail && gorelease | tee changes.txt | |
| # Skip comment for forks - GITHUB_TOKEN doesn't have write permissions for external PRs | |
| - name: Comment Report | |
| if: always() && github.event.pull_request.head.repo.full_name == github.repository | |
| uses: marocchino/sticky-pull-request-comment@v2 | |
| with: | |
| path: changes.txt | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| header: gorelease |