diff options
author | 2023-08-16 14:46:13 +0100 | |
---|---|---|
committer | 2023-08-16 14:46:13 +0100 | |
commit | e69a60371c5b294cbc5b7863273bf649dfc12c82 (patch) | |
tree | 6c6e29d7dcf4157199cf1cfe702d90420f7cd375 | |
parent | Fix base url in docs (diff) |
Update status embed CI to trigger correctly
-rw-r--r-- | .github/workflows/lint-ansible.yaml | 3 | ||||
-rw-r--r-- | .github/workflows/lint-kubernetes.yaml | 3 | ||||
-rw-r--r-- | .github/workflows/status_embed.yaml | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/lint-ansible.yaml b/.github/workflows/lint-ansible.yaml index c5477a7..6b1347f 100644 --- a/.github/workflows/lint-ansible.yaml +++ b/.github/workflows/lint-ansible.yaml @@ -7,8 +7,7 @@ on: required: true jobs: - lint: - name: Lint + lint-ansible: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/lint-kubernetes.yaml b/.github/workflows/lint-kubernetes.yaml index ab1e9a5..e179710 100644 --- a/.github/workflows/lint-kubernetes.yaml +++ b/.github/workflows/lint-kubernetes.yaml @@ -7,8 +7,7 @@ on: required: true jobs: - lint: - name: Lint manifests + lint-manifests: runs-on: ubuntu-latest steps: - name: Checkout code diff --git a/.github/workflows/status_embed.yaml b/.github/workflows/status_embed.yaml index b4a897b..9090e74 100644 --- a/.github/workflows/status_embed.yaml +++ b/.github/workflows/status_embed.yaml @@ -3,7 +3,7 @@ name: Status Embed on: workflow_run: workflows: - - Lint Playbook + - lint types: - completed @@ -18,7 +18,7 @@ jobs: # - Always for the `pull_request` event, as it only runs one workflow. # - Always run for non-success workflows, as they terminate the workflow sequence. if: >- - (github.event.workflow_run.name == 'Lint' && github.event.workflow_run.conclusion != 'skipped') || + (github.event.workflow_run.name == 'lint' && github.event.workflow_run.conclusion != 'skipped') || github.event.workflow_run.event == 'pull_request' || github.event.workflow_run.conclusion == 'failure' || github.event.workflow_run.conclusion == 'cancelled' |