chore: licenses

This commit is contained in:
amrbashir
2022-08-26 14:51:34 +02:00
parent 8730044164
commit d2904b8866
9 changed files with 33 additions and 1 deletions

4
.gitignore vendored
View File

@@ -1,3 +1,7 @@
# Copyright 2019-2022 Tauri Programme within The Commons Conservancy
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: MIT
node_modules
npm-debug.log
*.pem

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2017 - Present Tauri Apps Contributors
Copyright (c) 2020 - 2022 Tauri Pogramme within The Commons Conservancy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -1,3 +1,7 @@
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import nock from "nock";
import app from "../src";
import { Probot, ProbotOctokit } from "probot";

View File

@@ -1,3 +1,7 @@
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import { it, expect, describe } from "vitest";
import { COMMAND_REGEX } from "../src/constants";

View File

@@ -1,3 +1,7 @@
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import { ProbotOctokit } from "probot";
import { it, expect, describe } from "vitest";
import { getIssueInfoFromUrl } from "../src/util";

View File

@@ -1,3 +1,7 @@
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import { Octokit } from "@octokit/rest";
export const TAURI_GITHUB_BOT = "tauri-apps[bot]";

View File

@@ -1,3 +1,7 @@
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import { Probot } from "probot";
import {
BACKLOG_LABEL,

View File

@@ -1,3 +1,7 @@
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
export const UPSTREAM_ISSUE_BODY_PREDICATE =
"> This issue has been upstreamed from";
export const UPSTREAM_ISSUE_BODY_SEPARATOR = "\n\n";

View File

@@ -1,3 +1,7 @@
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import { ProbotOctokit } from "probot";
import { TAURI_BOT_ACC_OCTOKIT, TAURI_ORG } from "./constants";