Skip to content

Commit

Permalink
fix: workflow order
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad committed Sep 26, 2023
1 parent 5d020dc commit 8cbf288
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/mirror_repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
# action failing due to upstream changes, a manual resolution
# PR with ./scripts/git_subrepo.sh pull will be needed.
name: Mirror Repositories

concurrency:
group: mirror-repositories
on:
schedule:
# Run the workflow every night at 2:00 AM UTC.
Expand Down Expand Up @@ -38,6 +35,8 @@ jobs:
mirror-to-build-system-repo:
runs-on: ubuntu-latest
# Force sequential.
needs: mirror-to-docs-repo
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -59,6 +58,8 @@ jobs:
mirror-to-barretenberg-repo:
runs-on: ubuntu-latest
# Force sequential.
needs: mirror-to-build-system-repo
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -80,6 +81,8 @@ jobs:
mirror-to-aztec-nr-repo:
runs-on: ubuntu-latest
# Force sequential.
needs: mirror-to-barretenberg-repo
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -97,4 +100,4 @@ jobs:
git rebase origin/master
git commit --amend -m "$(git log -1 --pretty=%B) [skip ci]"
git push
fi
fi

0 comments on commit 8cbf288

Please sign in to comment.