Optimization - A queue with fixed storage size backed by a circular buffer #590
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: release-patch-trigger | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [ closed ] | |
jobs: | |
release-patch-trigger: | |
if: contains(github.event.pull_request.labels.*.name, 'patch-release') && !contains(github.event.pull_request.labels.*.name, 'minor-release') | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET 6.0.x SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x |