Update cmake to v4.40.0 #2255
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: Enforce PR Labels | |
| on: | |
| pull_request: | |
| types: [opened, labeled, unlabeled, edited, synchronize] | |
| jobs: | |
| require-agcm-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mheap/github-action-required-labels@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| mode: minimum | |
| count: 1 | |
| labels: "0-diff agcm,non-0-diff agcm,0-diff structural,0-diff trivial,automatic,github_actions" | |
| add_comment: true | |
| message: "This PR is being prevented from merging because you have not added one of our required labels to say if they are 0-diff or non-0-diff for uncoulped dataocean runs: {{ provided }}. Please add so that the PR can be merged." | |
| require-ogcm-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mheap/github-action-required-labels@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| mode: minimum | |
| count: 1 | |
| labels: "0-diff ogcm,non-0-diff ogcm,0-diff structural,0-diff trivial,automatic,github_actions" | |
| add_comment: true | |
| message: "This PR is being prevented from merging because you have not added one of our required labels to say if they are 0-diff or non-0-diff for coupled mom6 runs: {{ provided }}. Please add so that the PR can be merged." | |
| #require-dataatm-label: | |
| #runs-on: ubuntu-latest | |
| #steps: | |
| #- uses: mheap/github-action-required-labels@v5 | |
| #env: | |
| #GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| #with: | |
| #mode: minimum | |
| #count: 1 | |
| #labels: "0-diff dataatm,non-0-diff ogcm,0-diff structural,0-diff trivial,automatic,github_actions" | |
| #add_comment: true | |
| #message: "This PR is being prevented from merging because you have not added one of our required labels to say if they are 0-diff or non-0-diff for coupled dataatm mom6 runs: {{ provided }}. Please add so that the PR can be merged." | |
| blocking-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mheap/github-action-required-labels@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| mode: exactly | |
| count: 0 | |
| labels: "Contingent - DNA,Needs Lead Approval,Contingent -- Do Not Approve" | |
| add_comment: true | |
| message: "This PR is being prevented from merging because you have added one of our blocking labels: {{ provided }}. You'll need to remove it before this PR can be merged." | |