Skip to content

Commit

Permalink
fix order in lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mashehu committed Aug 27, 2024
1 parent ed0fb1b commit 9d2a3ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/pipelines/lint/actions_awsfulltest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def actions_awsfulltest(self) -> Dict[str, List[str]]:

# Check that the action is only turned on for published releases
try:
if wf[True]["pull_request"]["branches"] != ["master", "main"]:
if wf[True]["pull_request"]["branches"] != ["main", "master"]:
raise AssertionError()
if wf[True]["pull_request_review"]["types"] != ["submitted"]:
raise AssertionError()
Expand Down

0 comments on commit 9d2a3ab

Please sign in to comment.