├── .copywrite.hcl ├── .github └── workflows │ └── create-jira-issue.workflow.yml ├── .gitignore ├── .gitlab-ci.yml ├── Base.gitlab-ci.yml ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md └── docs ├── CONTRIBUTING.md └── RELEASES.md /.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/.copywrite.hcl -------------------------------------------------------------------------------- /.github/workflows/create-jira-issue.workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/.github/workflows/create-jira-issue.workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Base.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/Base.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/tf-nexus 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-workflows-gitlab/HEAD/docs/RELEASES.md --------------------------------------------------------------------------------