mvcc: add sequence_watermark function and track sequence allocations #3587
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
| name: Fossier PR Check | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check for fossier command | |
| id: check-cmd | |
| if: github.event_name == 'issue_comment' | |
| shell: bash | |
| run: | | |
| if jq -r '.comment.body' "$GITHUB_EVENT_PATH" | grep -qP '^/fossier\s'; then | |
| echo "has_command=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - uses: PThorpe92/fossier@f4abfcf3ffb60b6d59337126d092ffbb41405685 | |
| if: github.event_name != 'issue_comment' || steps.check-cmd.outputs.has_command == 'true' | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| registry-api-key: ${{ secrets.FOSSIER_REGISTRY_API_KEY }} | |
| contact-url: "https://discord.gg/CnXmpukt4" |