Skip to content

Commit

Permalink
chore: add required copyright headers
Browse files Browse the repository at this point in the history
Signed-off-by: team-tf-cdk <github-team-tf-cdk@hashicorp.com>
  • Loading branch information
team-tf-cdk committed Feb 28, 2023
1 parent cabe898 commit 378c13c
Show file tree
Hide file tree
Showing 12 changed files with 56 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/request-provider.yml
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

---
name: New Pre-built Provider Request
title: "New Pre-built Provider Request: PROVIDER_NAME"
Expand Down
5 changes: 5 additions & 0 deletions .github/lib/.eslintrc.js
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

module.exports = {
root: true,
env: {
Expand Down
5 changes: 5 additions & 0 deletions .github/lib/collect-changes.js
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

const fs = require("fs");
const path = require("path");

Expand Down
5 changes: 5 additions & 0 deletions .github/lib/comment-plan-output.js
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/


module.exports = ({ context, github, planOutcome, pusher, actionName, workflowName, workingDirectory, stackName }) => {
const { readFileSync } = require("fs")
Expand Down
5 changes: 5 additions & 0 deletions .github/lib/create-pr.js
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

module.exports = async ({ github, branchName, providerName, prTitle }) => {
const { GITHUB_SERVER_URL, GITHUB_REPOSITORY, GITHUB_RUN_ID } = process.env;
const url = `${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}`;
Expand Down
5 changes: 5 additions & 0 deletions .github/lib/create-projen-files.js
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

module.exports = ({ providerName }) => {
const path = require("path");
const fs = require("fs");
Expand Down
3 changes: 3 additions & 0 deletions .mergify.yml
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

queue_rules:
- name: default
conditions:
Expand Down
5 changes: 5 additions & 0 deletions lib/index.ts
@@ -1,2 +1,7 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

export * from "./repository";
export * from "./secrets";
5 changes: 5 additions & 0 deletions lib/repository.ts
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

import { Construct } from "constructs";
import {
Repository,
Expand Down
5 changes: 5 additions & 0 deletions lib/secrets.ts
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

import { Construct } from "constructs";
import { Resource, TerraformVariable } from "cdktf";
import {
Expand Down
5 changes: 5 additions & 0 deletions main.ts
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

import { Construct } from "constructs";
import {
App,
Expand Down
5 changes: 5 additions & 0 deletions projenrc.template.js
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

const { CdktfProviderProject } = require("@cdktf/provider-project");
const project = new CdktfProviderProject({
useCustomGithubRunner: __CUSTOM_RUNNER__,
Expand Down

0 comments on commit 378c13c

Please sign in to comment.