Skip to content

Commit

Permalink
upstream sync: Sort releases for deterministic workflows
Browse files Browse the repository at this point in the history
For some reason the most recent source repo sync workflow has created
PRs with upstream sync workflow jobs in a random order. This is not good
as they will keep changing over time. Sort the jobs based on the release
name.
  • Loading branch information
markgoddard committed Dec 13, 2023
1 parent fde3198 commit 644f210
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
contents: write
pull-requests: write
jobs:
{% for release in repository_manifest.releases %}
{% for release in repository_manifest.releases | sort %}
synchronise-{{ release | replace(".", "-") }}:
name: Synchronise {{release}}
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
Expand Down

0 comments on commit 644f210

Please sign in to comment.