feat(bed-4714): [WIP] Enhance GitHub Workflows #15
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: | ||
build-container-images: | ||
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 }} | ||
ghcr_account: ${{ github.actor }} | ||
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | ||
gh_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
static-code-analysis: | ||
name: Static Code Anaylsis | ||
needs: 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: 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 }} | ||
secrets: | ||
dockerhub_account: ${{ secrets.DOCKERHUB_USERNAME }} | ||
Check failure on line 58 in .github/workflows/ci.yml GitHub Actions / Continuous Integration (CI)Invalid workflow file
|
||
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} | ||
ghcr_account: ${{ github.actor }} | ||
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | ||
gh_access_token: ${{ secrets.GITHUB_TOKEN }} |