diff options
author | Roman / Linnea Gräf <roman.graef@gmail.com> | 2022-10-31 11:18:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-31 11:18:55 +0100 |
commit | e9c4e044c076250fcde6ddbdea1ea8c7f9cbf43d (patch) | |
tree | 725dbabf4b14d7c3f0b1f6eaf18d00b04675b9a2 /.github/workflows/infer.yml | |
parent | 5697b510ee9e397c71439f7960c671e1b7641f34 (diff) | |
download | NotEnoughUpdates-e9c4e044c076250fcde6ddbdea1ea8c7f9cbf43d.tar.gz NotEnoughUpdates-e9c4e044c076250fcde6ddbdea1ea8c7f9cbf43d.tar.bz2 NotEnoughUpdates-e9c4e044c076250fcde6ddbdea1ea8c7f9cbf43d.zip |
Add label to unmerged PRs (#404)
Diffstat (limited to '.github/workflows/infer.yml')
-rw-r--r-- | .github/workflows/infer.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/infer.yml b/.github/workflows/infer.yml index 7a035a42..049b9d3b 100644 --- a/.github/workflows/infer.yml +++ b/.github/workflows/infer.yml @@ -1,12 +1,13 @@ name: Infer on: - - pull_request + - pull_request_target - workflow_dispatch +permissions: {} jobs: inferering: runs-on: ubuntu-latest - + if: "!contains(github.event.head_commit.message, '[no infer]')" steps: - uses: actions/checkout@v3 name: Checkout feature |