Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: hardcode vcs_type #2

Merged
merged 2 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ workflows:
- orb-tools/pack:
filters: *filters
- orb-tools/review:
exclude: RC005,RC006 # Our repository is not a public at the moment.
filters: *filters
- shellcheck/check:
filters: *filters
# Triggers the next workflow in the Orb Development Kit.
- orb-tools/continue:
pipeline_number: << pipeline.number >>
vcs_type: << pipeline.project.type >>
vcs_type: github
orb_name: atlas-orb
requires: [orb-tools/lint, orb-tools/pack, orb-tools/review, shellcheck/check]
filters: *filters
2 changes: 1 addition & 1 deletion .circleci/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ workflows:
filters: *release-filters
- orb-tools/publish:
orb_name: ariga/atlas-orb
vcs_type: << pipeline.project.type >>
vcs_type: github
pub_type: production
# Ensure this job requires all test jobs and the pack job.
requires:
Expand Down
4 changes: 2 additions & 2 deletions src/@orb.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: 2.1

description: >
Sample orb description
CircleCI Orb for Atlas
# What will your orb allow users to accomplish?
# Descriptions should be short, simple, and informative.

# This information will be displayed in the orb registry and is not mandatory.
display:
home_url: "https://www.example.com/docs"
home_url: "https://atlasgo.io/getting-started"
source_url: "https://github.com/ariga/atlas-orb"

# If your orb requires other orbs, you can import them like this. Otherwise remove the "orbs" stanza.
Expand Down