Skip to content

Commit

Permalink
fix(scripts): change order of update-workflow-names invoke (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
plastikfan committed Apr 19, 2023
1 parent 5b1a229 commit bac63c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/automate-checklist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ function auto-check() {
echo "---> 🧰 REPO: $repo"
echo ""

update-workflow-names $repo $owner
if [ $? -ne 0 ]; then
return 1
fi

update-mod-file $repo $owner
if [ $? -ne 0 ]; then
return 1
Expand All @@ -27,11 +32,6 @@ function auto-check() {
return 1
fi

update-workflow-names $repo $owner
if [ $? -ne 0 ]; then
return 1
fi

rename-templ-data-id $repo $owner
if [ $? -ne 0 ]; then
return 1
Expand Down

0 comments on commit bac63c6

Please sign in to comment.