Skip to content

feat: Add event type filter for subscriptions #421

feat: Add event type filter for subscriptions

feat: Add event type filter for subscriptions #421

Workflow file for this run

name: CI
on:
pull_request:
branches: ["main"]
paths-ignore: ["*.md"]
push:
branches:
- "renovate/**"
# Prevent duplicate runs if Renovate falls back to creating a PR
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
- run: ./Build.ps1
shell: pwsh
- name: Docker metadata
id: meta
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5
with:
images: workleap/eventgridemulator
- name: Docker build
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6
with:
context: ./src
file: ./src/EventGridEmulator/Dockerfile
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}