This repository was archived by the owner on Nov 18, 2025. It is now read-only.
fix(deps): update dependency @octokit/rest to v22 #8552
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - run: npm install | |
| - run: npm run build | |
| - run: npm run format-check | |
| - run: npm run lint | |
| - run: npm run package | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| verbose: | |
| - true | |
| - false | |
| include-merge-commits: | |
| - true | |
| - false | |
| repo: | |
| - owner: NixOS | |
| repo: nixpkgs | |
| basehead: cc455c004a60e1d65a0fb86ad6cc76168c6bb4d5...67c80531be622641b5b2ccc3a7aff355cb02476b | |
| - owner: nix-community | |
| repo: home-manager | |
| basehead: b0d769691cc379c9ab91d3acec5d14e75c02c02b...59be1f4983ee3689de3172716a6c7e95a6a37bb7 | |
| - owner: nix-community | |
| repo: home-manager | |
| basehead: 0b197562ab7bf114dd5f6716f41d4b5be6ccd357...2f40cd05dc0ffe3ba69a94e9e76e0357c5b9a0b8 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: test | |
| uses: ./ | |
| with: | |
| owner: ${{ matrix.repo.owner }} | |
| repo: ${{ matrix.repo.repo }} | |
| basehead: ${{ matrix.repo.basehead }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| verbose: ${{ matrix.verbose }} | |
| include-merge-commits: ${{ matrix.include-merge-commits }} | |
| release: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build | |
| - test | |
| steps: | |
| - uses: actions/[email protected] | |
| id: generate_token | |
| with: | |
| app-id: ${{ secrets.APP_ID }} | |
| private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ steps.generate_token.outputs.token }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - run: npm ci | |
| - run: npm install | |
| - run: npm run build | |
| - run: npm run package | |
| - run: npx semantic-release | |
| env: | |
| GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} |