This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
cmake: use nproc
if _num_cores is zero
#864
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
--- | |
name: "Pull Request Needs Rebase?" | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
jobs: | |
needs-rebase: | |
runs-on: ubuntu-latest | |
steps: | |
# eps1lon/[email protected] | |
# (NOTE: pinning the action to a given commit is a security best-practice: | |
# https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/security-hardening-for-github-actions) | |
- name: Check if PR needs rebase | |
uses: eps1lon/actions-label-merge-conflict@b8bf8341285ec9a4567d4318ba474fee998a6919 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
dirtyLabel: "needs-rebase" | |
commentOnDirty: "This pull request can no longer be automatically merged: a rebase is needed and changes have to be manually resolved" |