We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of using customized last-successful action, embed the required json parsing into action yaml file to reduce external dependencies:
curl -s https://api.github.com/repos/rhaas80/einsteintoolkit/actions/runs | jq 'first(.workflow_runs[] | select(.path==".github/workflows/docs.yml", .status=="success")) | .head_commit.id' | sed 's/\"//g'
gives the required last successful git hash.
This is basically the same as what the javascript in https://github.com/rhaas80/last-successful-commit-action/blob/master/dist/index.js does.
The text was updated successfully, but these errors were encountered:
actually do this via a repository_dispatch action option. Something like in carpetx-tests: https://github.com/EinsteinToolkit/carpetx-tests/blob/7e95b32e5b558d125c288b3271193db7b19dcdfc/.github/workflows/CI.yml#L8 this will avoid confusion between this programmatic dispatch and a user's manual dispatch
repository_dispatch
Sorry, something went wrong.
EinsteinToolkit/tests#5
updated submodules
0550170
Submodule repos/Proca d24ddf8..93f7a48: > Merged in Canuda_Proca_Fix_TwoPunctures_KerrProca (pull request rhaas80#6)
No branches or pull requests
Instead of using customized last-successful action, embed the required json parsing into action yaml file to reduce external dependencies:
gives the required last successful git hash.
This is basically the same as what the javascript in https://github.com/rhaas80/last-successful-commit-action/blob/master/dist/index.js does.
The text was updated successfully, but these errors were encountered: