diff --git a/.github/custom/cla-signatures.json b/.github/custom/cla-signatures.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/.github/custom/cla-signatures.json @@ -0,0 +1 @@ +{} diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 3867e9c..4e48fa0 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -23,6 +23,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - path-to-signatures: 'signatures/version1/cla.json' + path-to-signatures: '.github/custom/cla-signatures.json' path-to-document: 'https://github.com/skyblock-finance/skyblock-finance-opensource/blob/master/CLA.md' branch: 'main' # branch should not be protected diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..df1c80e --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +.github/custom/cla-signatures.json diff --git a/eslint.config.mjs b/eslint.config.mjs index 372ee01..cfecadf 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -38,7 +38,12 @@ export default tseslint.config( * @see {@link https://eslint.org/docs/latest/use/configure/ignore#ignoring-files} */ { - ignores: ['**/dist/**', '**/.turbo/**', 'packages/schemas/data/*.json'], + ignores: [ + '**/dist/**', + '**/.turbo/**', + '.github/custom/cla-signatures.json', + 'packages/schemas/data/*.json', + ], }, { extends: [...eslintConfig.configs.default], diff --git a/signatures/version1/cla.json b/signatures/version1/cla.json deleted file mode 100644 index 1bce2f0..0000000 --- a/signatures/version1/cla.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "signedContributors": [ - { - "name": "FlorianWendelborn", - "id": 1133858, - "comment_id": 2062837712, - "created_at": "2024-04-18T01:38:07Z", - "repoId": 788003777, - "pullRequestNo": 1 - } - ] -} \ No newline at end of file