ci/run-gitea-action-on-pr #88

Merged
servostar merged 4 commits from ci/run-gitea-action-on-pr into main 2024-11-21 15:18:28 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit e0b1e9db49 - Show all commits

View File

@ -8,8 +8,11 @@ on:
jobs:
run-ci-linux:
runs-on: ubuntu-latest
# run action mutally exclusive on PRs or
# push with commit containing "Run-Checks"
if: >
contains(github.event.head_commit.message, 'Run-Checks') ||
(contains(github.event.head_commit.message, 'Run-Checks') &&
github.event_name == 'push') ||
github.event_name == 'pull_request'
steps:
- name: Check out repository code