├── .github └── workflows │ ├── build.yaml │ └── selftest.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── contribute.md └── entrypoint.sh /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/selftest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/.github/workflows/selftest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TEMP.md 3 | .idea 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/action.yml -------------------------------------------------------------------------------- /contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/contribute.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/convictional/trigger-workflow-and-wait/HEAD/entrypoint.sh --------------------------------------------------------------------------------