Cleanups for mutex utilities #296
Workflow file for this run
This file contains 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
# Copyright (c) Microsoft Corporation. | |
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
name: Assign New PR | |
on: | |
pull_request_target: | |
types: [opened] | |
branch: | |
- main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
initial-review: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
name: Initial Review | |
steps: | |
- name: Assign the New Pull Request | |
uses: srggrs/[email protected] | |
with: | |
project: 'https://github.com/microsoft/STL/projects/1' | |
column_name: 'Initial Review' | |
work-in-progress: | |
if: github.event.pull_request.draft == true | |
runs-on: ubuntu-latest | |
name: Work In Progress | |
steps: | |
- name: Assign the New Pull Request | |
uses: srggrs/[email protected] | |
with: | |
project: 'https://github.com/microsoft/STL/projects/1' | |
column_name: 'Work In Progress' |