├── .github ├── CODEOWNERS ├── boomper.yml └── workflows │ ├── unit-tests.yml │ └── verify.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── screenshot.png └── tests ├── delete.json ├── entrypoint.bats ├── no-author.json ├── pullrequest.json ├── push.json └── status.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @buildkite/support -------------------------------------------------------------------------------- /.github/boomper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/.github/boomper.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | %{http_code} -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/screenshot.png -------------------------------------------------------------------------------- /tests/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/tests/delete.json -------------------------------------------------------------------------------- /tests/entrypoint.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/tests/entrypoint.bats -------------------------------------------------------------------------------- /tests/no-author.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/tests/no-author.json -------------------------------------------------------------------------------- /tests/pullrequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/tests/pullrequest.json -------------------------------------------------------------------------------- /tests/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/tests/push.json -------------------------------------------------------------------------------- /tests/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/trigger-pipeline-action/HEAD/tests/status.json --------------------------------------------------------------------------------