Merge queue workflow config #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Alerts Promql tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- examples/alerts/** | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
types: [ checks_requested ] | |
workflow_dispatch: | |
jobs: | |
pre-job: | |
runs-on: ubuntu-latest | |
name: Pre job checks | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: skip_check | |
uses: fkirc/[email protected] | |
with: | |
cancel_others: false | |
path: 'examples/alerts/**' | |
promql-tests: | |
name: Promql Unit tests | |
if: needs.pre-job.outputs.should_skip != 'true' | |
needs: pre-job | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Set up Go 1.22.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run Promql tests | |
run: | | |
make test-alerts | |
required-checks: | |
name: CI Test Alerts Required Checks | |
# This check adds a list of checks to one job to simplify adding settings to the repo. | |
# If a new check is added in this file, and it should be retested on entry to the merge queue, | |
# it needs to be added to the list below aka needs: [ existing check 1, existing check 2, new check ]. | |
needs: [ promql-tests ] | |
if: always() | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo '${{ toJSON(needs) }}' | jq -e 'all(.[]; .result == "success" or .result == "skipped")' |