Unload USB XHCI driver at shutdown on hardware #35
Workflow file for this run
This file contains 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: "Check auto-mergeability of PR" | |
on: | |
# use pull_request_target to also run on PRs with merge conflict | |
pull_request_target: | |
types: [labeled, unlabeled, ready_for_review, opened, reopened, synchronize] | |
pull_request_review: | |
types: [submitted, dismissed] | |
permissions: | |
contents: read | |
statuses: write | |
pull-requests: write | |
issues: write | |
jobs: | |
action: | |
name: check-auto-mergeability-of-pr | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: flyingcircusio/fc-nixos-release-tools | |
- uses: cachix/install-nix-action@v30 | |
- name: build release tooling | |
run: | | |
nix build .# | |
- run: | | |
./result/bin/auto-merge check-pr ${{ github.event.pull_request.number }} | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |