├── .github ├── ISSUE_TEMPLATE │ └── issue.md └── workflows │ └── project-add.yml └── README.md /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: issue 3 | about: A new issue the nixpkgs architecture team should consider solving 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Issue description** 11 | 12 | Describe the issue you'd like the nixpkgs architecture team to consider solving 13 | 14 | **Goal** 15 | 16 | Describe when this issues should be considered done 17 | -------------------------------------------------------------------------------- /.github/workflows/project-add.yml: -------------------------------------------------------------------------------- 1 | name: Add issues to the project 2 | 3 | on: 4 | issues: 5 | types: 6 | - opened 7 | 8 | jobs: 9 | add-to-project: 10 | name: Add issue to project 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/add-to-project@v0.1.0 14 | with: 15 | project-url: https://github.com/orgs/nixpkgs-architecture/projects/2 16 | github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nixpkgs Architecture Team Issues 2 | 3 | This repository was used to track issues that the [Nixpkgs Architecture Team](https://github.com/nixpkgs-architecture) might consider solving. 4 | 5 | Since the team is [now dissolved](https://discourse.nixos.org/t/nixpkgs-architecture-team-conclusion-and-prospective/41020), all issues have been transferred [to Nixpkgs](https://github.com/NixOS/nixpkgs/issues?q=is%3Aopen+is%3Aissue+label%3Aarchitecture). 6 | --------------------------------------------------------------------------------