mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
b9b0e5dead
* chore: set 2.18.1 as stable * Update release-channels.yaml * prevent rebuilding / retesting binary on stable channel change
22 lines
766 B
YAML
22 lines
766 B
YAML
# ATTENTION: Although this workflow doesn't do much, it is still important.
|
|
# It is complementary to the workflow in the file test-code.yml.
|
|
# It enables to exclude files for the workflow and still mark the Test job as required without having pending PRs.
|
|
# GitHub recommends this solution here:
|
|
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
|
|
|
|
name: ZITADEL PR
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'docs/**'
|
|
- 'guides/**'
|
|
- '**.md'
|
|
- 'release-channels.yaml'
|
|
|
|
jobs:
|
|
Build-ZITADEL:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- run: 'echo "No tests for docs are implemented, yet"'
|