feat(bed-4714): [WIP] Enhance GitHub Workflows #23
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: Continuous Integration (CI) | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
types: | ||
- assigned | ||
- opened | ||
- synchronize | ||
- reopened | ||
- closed | ||
# https://stephencharlesweiss.com/github-actions-run-on-merge-only | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
permissions: write-all | ||
jobs: | ||
cla-check: | ||
name: CLA Check | ||
uses: ./.github/workflows/reusable.cla.yml | ||
secrets: | ||
gh_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
gh_repo_scope: ${{ secrets.REPO_SCOPE }} | ||
build-container-images: | ||
needs: cla-check | ||
name: Build Container Images | ||
uses: ./.github/workflows/build-container-images.yml | ||
with: | ||
push_image: false | ||
secrets: | ||
dockerhub_account: ${{ secrets.DOCKERHUB_USERNAME }} | ||
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} | ||
Check failure on line 39 in .github/workflows/ci.yml GitHub Actions / Continuous Integration (CI)Invalid workflow file
|
||
ghcr_account: ${{ github.actor }} | ||
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | ||
gh_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
static-code-analysis: | ||
name: Static Code Analysis | ||
needs: [cla-check, build-container-images] | ||
uses: ./.github/workflows/static-code-analysis.yml | ||
with: | ||
bloodhound_image_tar_artifact_name: ${{ needs.build-container-images.outputs.bloodhound_image_tar_artifact_name }} | ||
bloodhound_image_tar_path: ${{ needs.build-container-images.outputs.bloodhound_image_tar_path }} | ||
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 }} | ||
testing: | ||
name: Code Testing | ||
needs: [cla-check, build-container-images] | ||
uses: ./.github/workflows/testing.yml | ||
with: | ||
bloodhound_image_tar_artifact_name: ${{ needs.build-container-images.outputs.bloodhound_image_tar_artifact_name }} | ||
bloodhound_image_tar_path: ${{ needs.build-container-images.outputs.bloodhound_image_tar_path }} |