-
Notifications
You must be signed in to change notification settings - Fork 91
34 lines (30 loc) · 863 Bytes
/
tests.yml
File metadata and controls
34 lines (30 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: tests
on:
push:
branches:
- main
pull_request: null
merge_group: null
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Check if we can skip the merge queue
outputs:
skip-check: ${{ steps.merge-queue-ci-skipper.outputs.skip-check }}
runs-on: ubuntu-slim
steps:
- name: Check if we can skip the merge queue
id: merge-queue-ci-skipper
uses: cariad-tech/merge-queue-ci-skipper@cf80db21fc70244e36487acc531b3f1118889b0a
with:
secret: ${{ secrets.AUTOTICK_BOT_TOKEN }}
tests:
needs: check
uses: ./.github/workflows/tests-reusable.yml
with:
skip: ${{ needs.check.outputs.skip-check }}
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
BOT_TOKEN: ${{ secrets.AUTOTICK_BOT_TOKEN }}