<@U01JVDKASAC> I have a github repo and I am tryin...
# seed
g
@Frank I have a github repo and I am trying to set up a github action that triggers a redeploy of a different Seed Run application using the seed cli. What I don’t have is the gitsha of that other seed app. Is there a way to just trigger a redeploy of the last deployed gitsha
Copy code
SEED_TOKEN=$SEED_TOKEN seed deploy \
            --org $SEED_ORG \
            --app $SEED_APP \
            --stage staging
                             <----- without the --commit #######
f
Hey @Guy Shechter, you should be able to pass in the any ref to
--comment
, this should work
--commit staging
Give it a try and let me know if it works.
g
I was able to get it to work by passing in the branch name in
Copy code
... --commit <branchname>
Thanks!