this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: remove .github

dusk 3e4216ef a7d59f6d

-227
-38
.github/ISSUE_TEMPLATE/bug_report.md
··· 1 - --- 2 - name: Bug report 3 - about: Create a report to help improve 4 - title: '' 5 - labels: 'bug' 6 - assignees: '' 7 - 8 - --- 9 - 10 - Your issue may already be reported! 11 - Please search on the [issue tracker](../) before creating one. 12 - 13 - ## Expected Behavior 14 - <!--- What should happen? --> 15 - <!--- How it should work? --> 16 - 17 - ## Current Behavior 18 - <!--- What happens instead of the expected behavior? --> 19 - 20 - ## Possible Solution 21 - <!--- Not obligatory, but suggest a fix/reason for the bug, --> 22 - <!--- or ideas how to implement the addition or change --> 23 - 24 - ## Steps to Reproduce 25 - <!--- An unambiguous set of steps to reproduce this bug. --> 26 - <!--- Linked fork or gist if needed. --> 27 - 1. 28 - 2. 29 - 3. 30 - 4. 31 - 32 - ## Context 33 - <!--- How has this issue affected you? What are you trying to accomplish? --> 34 - <!--- Providing context helps us come up with a solution that is most useful in the real world. --> 35 - 36 - ## Your Environment 37 - <!--- Include relevant details about the environment you experienced the bug in. --> 38 - <!--- If you have run `bud update`, for example, post the flake.lock file. -->
-22
.github/ISSUE_TEMPLATE/community_request.md
··· 1 - --- 2 - name: Commuity Request 3 - about: inspire contribution to the `community` branch 4 - title: '' 5 - labels: 'community' 6 - assignees: '' 7 - 8 - --- 9 - 10 - Your issue may already be reported! 11 - Please search on the [issue tracker](../) before creating one. 12 - 13 - ## Ideas 14 - <!--- The `community` branch is meant to provide various preconfigured system options, --> 15 - <!--- useful to all kinds of users. --> 16 - 17 - <!--- The point is to engage the community for what it thinks are --> 18 - <!--- sane defaults for various tools. --> 19 - 20 - ## Requests 21 - <!--- Have a tool that you'd like to see a system profile for? --> 22 - <!--- Feel free to request it here. -->
-24
.github/ISSUE_TEMPLATE/feature_request.md
··· 1 - --- 2 - name: Feature request 3 - about: Suggest an idea 4 - title: '' 5 - labels: 'enhancement' 6 - assignees: '' 7 - 8 - --- 9 - 10 - Your issue may already be reported! 11 - Please search on the [issue tracker](../) before creating one. 12 - 13 - ## Would your feature fix an existing issue? 14 - <!--- If your idea is related to, or resolves other issues, please mention. --> 15 - 16 - ## Describe the solution you'd like 17 - <!--- What you want to happen. --> 18 - 19 - ## Describe alternatives you've considered 20 - <!--- Any alternative solutions or features you've considered? --> 21 - 22 - ## Additional context 23 - <!--- Is this feature only useful for a particular usecase? --> 24 - <!--- Please elaborate. -->
-16
.github/ISSUE_TEMPLATE/upstream_notice.md
··· 1 - --- 2 - name: Upstream notice (Issues or Changes) 3 - about: Create an upstream notice to help our research 4 - title: '[ <put the upstream project> ]: <topic>' 5 - labels: 'upstream' 6 - assignees: '' 7 - 8 - --- 9 - 10 - ## Link 11 - <!-- just place a link to the upstream issue, or PR --> 12 - 13 - 14 - ## Context 15 - <!-- We want to make this as cheap for you as possible. 16 - Context is not required but helpful -->
-29
.github/workflows/check.yml
··· 1 - name: "Check & Cachix" 2 - on: 3 - push: 4 - branches: 5 - - main 6 - - trying 7 - - staging 8 - jobs: 9 - check: 10 - runs-on: ubuntu-latest 11 - steps: 12 - - uses: actions/checkout@v2.3.4 13 - - uses: cachix/install-nix-action@v13 14 - with: 15 - install_url: https://github.com/numtide/nix-flakes-installer/releases/download/nix-2.4pre20210415_76980a1/install 16 - extra_nix_config: | 17 - experimental-features = nix-command flakes 18 - system-features = nixos-test benchmark big-parallel kvm recursive-nix 19 - substituters = https://nrdxp.cachix.org https://nix-community.cachix.org https://cache.nixos.org 20 - trusted-public-keys = nrdxp.cachix.org-1:Fc5PSqY2Jm1TrWfm88l6cvGWwz3s93c6IOifQWnhNW4= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= 21 - - uses: cachix/cachix-action@v10 22 - with: 23 - name: nrdxp 24 - signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 25 - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' 26 - - run: nix -Lv flake check 27 - - run: nix -Lv build ".#nixosConfigurations.NixOS.config.system.build.toplevel" 28 - - run: nix -Lv develop -c echo OK 29 - - run: nix -Lv develop --command bud --help
-27
.github/workflows/mdbook_docs.yml
··· 1 - name: Deploy Docs to GitHub Pages 2 - 3 - on: 4 - push: 5 - branches: 6 - - main 7 - 8 - jobs: 9 - deploy: 10 - runs-on: ubuntu-18.04 11 - steps: 12 - - uses: actions/checkout@v2 13 - 14 - - name: Setup mdBook 15 - uses: peaceiris/actions-mdbook@v1 16 - with: 17 - mdbook-version: 'latest' 18 - 19 - - run: mdbook build doc 20 - 21 - - name: Deploy 22 - uses: peaceiris/actions-gh-pages@v3 23 - with: 24 - github_token: ${{ secrets.GITHUB_TOKEN }} 25 - publish_branch: gh-pages 26 - publish_dir: ./doc/book 27 - cname: devos.divnix.com
-71
.github/workflows/release.yml
··· 1 - name: Release 2 - 3 - on: 4 - push: 5 - tags: 6 - - v* 7 - 8 - jobs: 9 - changelog: 10 - name: Update Changelog 11 - runs-on: ubuntu-latest 12 - steps: 13 - - name: Get version from tag 14 - env: 15 - GITHUB_REF: ${{ github.ref }} 16 - run: | 17 - export CURRENT_VERSION=${GITHUB_TAG/refs\/tags\/v/} 18 - echo "CURRENT_VERSION=$CURRENT_VERSION" >> $GITHUB_ENV 19 - - name: Checkout code 20 - uses: actions/checkout@v2 21 - with: 22 - ref: main 23 - - name: Update Changelog 24 - uses: heinrichreimer/github-changelog-generator-action@v2.1.1 25 - with: 26 - token: ${{ secrets.GITHUB_TOKEN }} 27 - issues: false 28 - issuesWoLabels: false 29 - pullRequests: true 30 - prWoLabels: true 31 - addSections: '{"documentation":{"prefix":"**Documentation:**","labels":["documentation"]}}' 32 - - uses: stefanzweifel/git-auto-commit-action@v4 33 - with: 34 - commit_message: Update Changelog for tag ${{ env.CURRENT_VERSION }} 35 - file_pattern: CHANGELOG.md 36 - 37 - release_notes: 38 - name: Create Release Notes 39 - runs-on: ubuntu-latest 40 - needs: changelog 41 - steps: 42 - - name: Get version from tag 43 - env: 44 - GITHUB_REF: ${{ github.ref }} 45 - run: | 46 - export CURRENT_VERSION=${GITHUB_TAG/refs\/tags\/v/} 47 - echo "CURRENT_VERSION=$CURRENT_VERSION" >> $GITHUB_ENV 48 - 49 - - name: Checkout code 50 - uses: actions/checkout@v2 51 - with: 52 - ref: main 53 - 54 - - name: Get Changelog Entry 55 - id: changelog_reader 56 - uses: mindsers/changelog-reader-action@v1 57 - with: 58 - version: ${{ env.CURRENT_VERSION }} 59 - path: ./CHANGELOG.md 60 - 61 - - name: Create Release 62 - id: create_release 63 - uses: actions/create-release@v1 64 - env: 65 - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 66 - with: 67 - tag_name: ${{ github.ref }} 68 - release_name: Release ${{ github.ref }} 69 - body: ${{ steps.changelog_reader.outputs.log_entry }} 70 - draft: false 71 - prerelease: false