ci/run-ci-on-push (#108)
Build'n check / run-ci-linux (push) Has been skipped Details

Reviewed-on: #108
Co-authored-by: servostar <sven.vogel123@web.de>
Co-committed-by: servostar <sven.vogel123@web.de>
This commit is contained in:
Sven Vogel 2024-11-25 15:49:21 +00:00 committed by Sven Vogel
parent 1d6a900fca
commit 1a09a0251d
1 changed files with 6 additions and 4 deletions

View File

@ -2,11 +2,12 @@ name: Build'n check
run-name: Performing Typst compilation
on:
pull_request:
types:
- opened
- synchronize
branches:
- main
push:
branches-ignore:
- main
jobs:
run-ci-linux:
runs-on: ubuntu-latest
@ -14,7 +15,8 @@ jobs:
# push with commit containing "Run-Checks"
if: >
(contains(github.event.head_commit.message, 'Run-Checks') &&
github.event_name == 'push')
github.event_name == 'push') ||
github.event_name == 'pull_request'
steps:
- name: Check out repository code
uses: actions/checkout@v3