Skip to content

BED-5249: feat: Get Tier/Label List Endpoint #857

BED-5249: feat: Get Tier/Label List Endpoint

BED-5249: feat: Get Tier/Label List Endpoint #857

Workflow file for this run

---
# Copyright 2025 Specter Ops, Inc.
#
# Licensed under the Apache License, Version 2.0
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
name: Continuous Integration (CI)
on:
pull_request:
branches:
- main
- 'stage/**'
types:
- opened
- synchronize
paths-ignore:
- 'docs/**'
- 'rfc/**'
jobs:
cla-check:
# the if statement skips the CLA check when running locally using act
if: ${{ !github.event.act }}
name: Process CLA
runs-on: ubuntu-latest
steps:
- name: CLA Assistant
if: github.event_name == 'pull_request_target'
uses: contributor-assistant/github-action@v2.2.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERSONAL_ACCESS_TOKEN: ${{ secrets.REPO_SCOPE }}
bloodhound-container-image:
needs: cla-check
name: Build BloodHound Container Image
uses: ./.github/workflows/reusable.build-container-image.yml
with:
container_image_repository_name: docker.io/specterops/bloodhound
build_target: bloodhound
image_sbom: false
image_provenance: false
build_outputs: type=image,push=false
dockerfile: dockerfiles/bloodhound.Dockerfile
image_cache_from: type=gha
image_cache_to: type=gha,mode=max
build_args: |
checkout_hash=${{ github.sha }}
secrets:
dockerhub_account: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
ghcr_account: ${{ github.actor }}
ghcr_token: ${{ secrets.GITHUB_TOKEN }}
gh_access_token: ${{ secrets.GITHUB_TOKEN }}