Skip to content

Commit ec9bf83

Browse files
authored
chore: remove template artifacts (#3)
The `init` command creates an orb using a predefined template which introduces a lot of noise which is removed with this change.
1 parent 116d89d commit ec9bf83

File tree

11 files changed

+1
-242
lines changed

11 files changed

+1
-242
lines changed

.circleci/test-deploy.yml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,21 @@
11
version: 2.1
22
orbs:
3-
# Your orb will be automatically injected here during the pipeline.
4-
# Reference your orb's jobs and commands below as they will exist when built.
53
orb-tools: circleci/orb-tools@12.0
6-
# The orb definition is intentionally not included here. It will be injected into the pipeline.
74
security: {}
85

9-
# Use this tag to ensure test jobs always run,
10-
# even though the downstream publish job will only run on release tags.
116
filters: &filters
127
tags:
138
only: /.*/
149

15-
# Filter for release tags.
1610
release-filters: &release-filters
1711
branches:
1812
ignore: /.*/
1913
tags:
2014
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
2115

22-
jobs:
23-
# Create jobs to test the commands of your orbs.
24-
# You may want to add additional validation steps to ensure the commands are working as expected.
25-
command-test:
26-
docker:
27-
- image: cimg/base:current
28-
steps:
29-
- checkout
30-
# Run your orb's commands to validate them.
31-
- security/greet
3216
workflows:
3317
test-deploy:
3418
jobs:
35-
# Make sure to include "filters: *filters" in every test job you want to run as part of your deployment.
36-
# Test your orb's commands in a custom job and test your orb's jobs directly as a part of this workflow.
37-
- command-test:
38-
filters: *filters
39-
# The orb must be re-packed for publishing, and saved to the workspace.
4019
- security/scan_dependencies:
4120
pkg_manager: npm
4221
pkg_json_dir: ~/project/sample
@@ -60,9 +39,7 @@ workflows:
6039
orb_name: studion/security
6140
vcs_type: << pipeline.project.type >>
6241
pub_type: production
63-
# Ensure this job requires all test jobs and the pack job.
6442
requires:
6543
- orb-tools/pack
66-
- command-test
6744
context: orb-publishing
6845
filters: *release-filters

.github/ISSUE_TEMPLATE/BUG.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,7 @@
1-
# Orb Template
2-
1+
# Orb
32

43
[![CircleCI Build Status](https://circleci.com/gh/ExtensionEngine/pipeline-security-orb.svg?style=shield "CircleCI Build Status")](https://circleci.com/gh/ExtensionEngine/pipeline-security-orb) [![CircleCI Orb Version](https://badges.circleci.com/orbs/studion/security.svg)](https://circleci.com/developer/orbs/orb/studion/security) [![GitHub License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/ExtensionEngine/pipeline-security-orb/master/LICENSE) [![CircleCI Community](https://img.shields.io/badge/community-CircleCI%20Discuss-343434.svg)](https://discuss.circleci.com/c/ecosystem/orbs)
54

6-
7-
8-
A project template for Orbs.
9-
10-
This repository is designed to be automatically ingested and modified by the CircleCI CLI's `orb init` command.
11-
12-
_**Edit this area to include a custom title and description.**_
13-
14-
---
15-
165
## Resources
176

187
[CircleCI Orb Registry Page](https://circleci.com/developer/orbs/orb/studion/security) - The official registry page of this orb for all versions, executors, commands, and jobs described.
19-
20-
[CircleCI Orb Docs](https://circleci.com/docs/orb-intro/#section=configuration) - Docs for using, creating, and publishing CircleCI Orbs.
21-
22-
### How to Contribute
23-
24-
We welcome [issues](https://github.com/ExtensionEngine/pipeline-security-orb/issues) to and [pull requests](https://github.com/ExtensionEngine/pipeline-security-orb/pulls) against this repository!
25-
26-
### How to Publish An Update
27-
1. Merge pull requests with desired changes to the main branch.
28-
- For the best experience, squash-and-merge and use [Conventional Commit Messages](https://conventionalcommits.org/).
29-
2. Find the current version of the orb.
30-
- You can run `circleci orb info studion/security | grep "Latest"` to see the current version.
31-
3. Create a [new Release](https://github.com/ExtensionEngine/pipeline-security-orb/releases/new) on GitHub.
32-
- Click "Choose a tag" and _create_ a new [semantically versioned](http://semver.org/) tag. (ex: v1.0.0)
33-
- We will have an opportunity to change this before we publish if needed after the next step.
34-
4. Click _"+ Auto-generate release notes"_.
35-
- This will create a summary of all of the merged pull requests since the previous release.
36-
- If you have used _[Conventional Commit Messages](https://conventionalcommits.org/)_ it will be easy to determine what types of changes were made, allowing you to ensure the correct version tag is being published.
37-
5. Now ensure the version tag selected is semantically accurate based on the changes included.
38-
6. Click _"Publish Release"_.
39-
- This will push a new tag and trigger your publishing pipeline on CircleCI.

src/README.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/commands/greet.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/examples/example.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/executors/default.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/jobs/hello.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)