Skip to content

Commit

Permalink
Fix dod status on merge queue
Browse files Browse the repository at this point in the history
Seems that skipped status is not enough, we need success status for
check-dod job. So let's execute checkout always and dod step only when
we should.
  • Loading branch information
jjanowsk committed Jan 29, 2025
1 parent d05c5b4 commit 3270af6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
permissions:
pull-requests: write
runs-on: ubuntu-20.04
# Excluding Dependabot PRs from this check.
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Check DoD
# Excluding Dependabot PRs and checks_requested events from this check.
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'
uses: platisd/definition-of-done@e69d712b88c93ef88a73da4435155a0054b7df5e # v2.2.0
with:
dod_yaml: 'dod.yml'
Expand Down
Empty file added .unreleased/merge_queue_part_3
Empty file.

0 comments on commit 3270af6

Please sign in to comment.