intelmq rules: add inhibitions (whitelist) tag processing #21
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
#Github Workflow to build with docker-compose | |
# | |
#SPDX-FileCopyrightText: 2023 Intevation GmbH | |
#SPDX-License-Identifier: AGPL-3.0-or-later | |
name: "Docker-Compose build full-pkg" | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- '.github/**' | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- '.github/**' | |
jobs: | |
docker-fullpkg: | |
name: Run docker-compose build full-pkg | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: docker-compose build | |
uses: sudo-bot/action-docker-compose@latest | |
with: | |
cli-args: -f docker-compose.yml -f docker-compose.pkg.yml -f docker-compose.full-pkg.yml build --parallel |