diff options
| -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'  |