From 883823bf0e364b17b1823e5b0ab0da68814c6a22 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Tue, 5 Aug 2025 05:56:36 -0400 Subject: [PATCH] delete obsolete files --- .envrc | 4 --- .github/workflows/ci.yml | 3 +- CONTRIBUTING.md | 30 ------------------- README.md | 3 +- docs/DCO.md | 62 ---------------------------------------- shell.nix | 23 --------------- 6 files changed, 2 insertions(+), 123 deletions(-) delete mode 100644 .envrc delete mode 100644 CONTRIBUTING.md delete mode 100644 docs/DCO.md delete mode 100644 shell.nix diff --git a/.envrc b/.envrc deleted file mode 100644 index f310aea..0000000 --- a/.envrc +++ /dev/null @@ -1,4 +0,0 @@ -has nix && use nix -dotenv_if_exists -PATH_add bin -path_add GOBIN bin diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83a9a80..1dd38c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,6 @@ on: branches: [main] jobs: - build: runs-on: ubuntu-latest steps: @@ -16,7 +15,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.22 - name: Build run: go build -v ./... diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 137edc2..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,30 +0,0 @@ -## Hello Contributors! - -Thanks for your interest! -We're so glad you're here. - -### Important Resources - -#### bugs: [https://github.com/tinkerbell/proposals/issues](https://github.com/tinkerbell/proposals/issues) - -### Code of Conduct - -Please read and understand the code of conduct found [here](https://github.com/tinkerbell/.github/blob/main/CODE_OF_CONDUCT.md). - -### DCO Sign Off - -Please read and understand the DCO found [here](docs/DCO.md). - -### Environment Details - -### How to Submit Change Requests - -Please submit change requests and / or features via [Issues](https://github.com/tinkerbell/proposals/issues). -There's no guarantee it'll be changed, but you never know until you try. -We'll try to add comments as soon as possible, though. - -### How to Report a Bug - -Bugs are problems in code, in the functionality of an application or in its UI design; you can submit them through [Issues](https://github.com/tinkerbell/proposals/issues). - -## Code Style Guides diff --git a/README.md b/README.md index eaabed0..6ab6407 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,7 @@ lint-install -dry-run . ## What Gets Added - **Makefile targets**: `lint`, `lint-`, `lint-install` -- **Config files**: `.golangci.yml`, `.hadolint.yaml`, `.yamllint` -- **Version files**: `.*.version` for reproducible builds +- **Config files**: `.golangci.yml`, `.yamllint` - **Linter binaries**: `./out/linters/` (git-ignored) ## Contributing diff --git a/docs/DCO.md b/docs/DCO.md deleted file mode 100644 index 4a28c20..0000000 --- a/docs/DCO.md +++ /dev/null @@ -1,62 +0,0 @@ -# DCO Sign Off - -All authors to the project retain copyright to their work. However, to ensure -that they are only submitting work that they have rights to, we are requiring -everyone to acknowledge this by signing their work. - -Since this signature indicates your rights to the contribution and -certifies the statements below, it must contain your real name and -email address. Various forms of noreply email address must not be used. - -Any copyright notices in this repository should specify the authors as "The -project authors". - -To sign your work, just add a line like this at the end of your commit message: - -```text -Signed-off-by: Jess Owens -``` - -This can easily be done with the `--signoff` option to `git commit`. - -By doing this you state that you can certify the following (from [https://developercertificate.org/][1]): - -```text -Developer Certificate of Origin -Version 1.1 - -Copyright (C) 2004, 2006 The Linux Foundation and its contributors. -1 Letterman Drive -Suite D4700 -San Francisco, CA, 94129 - -Everyone is permitted to copy and distribute verbatim copies of this -license document, but changing it is not allowed. - - -Developer's Certificate of Origin 1.1 - -By making a contribution to this project, I certify that: - -(a) The contribution was created in whole or in part by me and I - have the right to submit it under the open source license - indicated in the file; or - -(b) The contribution is based upon previous work that, to the best - of my knowledge, is covered under an appropriate open source - license and I have the right under that license to submit that - work with modifications, whether created in whole or in part - by me, under the same open source license (unless I am - permitted to submit under a different license), as indicated - in the file; or - -(c) The contribution was provided directly to me by some other - person who certified (a), (b) or (c) and I have not modified - it. - -(d) I understand and agree that this project and the contribution - are public and that a record of the contribution (including all - personal information I submit with it, including my sign-off) is - maintained indefinitely and may be redistributed consistent with - this project or the open source license(s) involved. -``` diff --git a/shell.nix b/shell.nix deleted file mode 100644 index d663ba3..0000000 --- a/shell.nix +++ /dev/null @@ -1,23 +0,0 @@ -let _pkgs = import { }; -in { pkgs ? import (_pkgs.fetchFromGitHub { - owner = "NixOS"; - repo = "nixpkgs"; - #branch@date: nixpkgs-unstable@2022-08-17 - rev = "d61d4e71ba9a8f56e9f2092b7cfa9cffa4253971"; - sha256 = "0x76l64pchaqaw8v0b331g4jm3li1xcpkbwxpn9n6a769c4ynj58"; -}) { } }: - -with pkgs; - -mkShell { - buildInputs = [ - git - gnumake - go_1_18 - nixfmt - nodePackages.prettier - python3Packages.pip - python3Packages.setuptools - python3Packages.wheel - ]; -}