Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mickmaccallum committed Jul 25, 2024
1 parent 751d2b2 commit 71b6990
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,15 @@ orbs:
jq: circleci/[email protected]
node: circleci/[email protected]

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs
jobs:
update-cli-formula:
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job
docker:
# Specify the version you desire here
# See: https://circleci.com/developer/images/image/cimg/base
- image: cimg/base:current

environment:
WEBHOOK_BODY: << pipeline.trigger_parameters.webhook.body >>

# Add steps to the job
# See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps
steps:
# Checkout the code as the first step.
- checkout
Expand All @@ -31,11 +27,11 @@ jobs:
- run:
name: Test
command: |
echo "<< parameters >>"
echo $WEBHOOK_BODY
# Orchestrate jobs using workflows
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
workflows:
update-cli-formula-workflow:
# when: << pipeline.trigger_parameters.webhook >>
jobs:
- update-cli-formula

0 comments on commit 71b6990

Please sign in to comment.