-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from buildkite/update-workflow-syntax
Update workflow syntax
- Loading branch information
Showing
2 changed files
with
12 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,6 @@ | ||
name: 'Trigger Buildkite Pipeline' | ||
author: 'Buildkite' | ||
description: 'A GitHub Action for triggering a build on a Buildkite pipeline.' | ||
inputs: | ||
buildkite_token: | ||
description: 'Buildkite API Access Token' | ||
required: true | ||
pipeline: | ||
description: 'The pipline to create a build on, in the format <org-slug>/<pipeline-slug>' | ||
required: true | ||
commit_sha: | ||
description: 'The commit SHA of the build' | ||
required: false | ||
branch_ref: | ||
description: 'The branch of the build' | ||
required: false | ||
commit_message: | ||
description: 'The message for the build' | ||
required: false | ||
build_env_vars: | ||
description: 'Additional environment variables to set on the build, in JSON format' | ||
required: false | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' |