config/power-management: mention polkit at elogind #320
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 PR | |
on: | |
pull_request: | |
paths: | |
- 'src/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
contents: | |
name: Check formatting and links | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/void-linux/void-linux:latest-full-x86_64-musl | |
steps: | |
- name: Prepare container | |
run: | | |
xbps-install -Syu || xbps-install -Syu xbps | |
xbps-install -yu | |
xbps-install -y mdbook-linkcheck vmdfmt git findutils bash | |
- name: Checkout | |
id: checkout | |
uses: classabbyamp/treeless-checkout-action@v1 | |
- name: Check summary | |
if: steps.checkout.conclusion == 'success' | |
run: res/ci/check-summary.sh | |
- name: Check formatting | |
if: success() || failure() | |
run: res/ci/format.sh | |
- name: Check links | |
if: success() || failure() | |
run: res/ci/linkcheck.sh | |
commits: | |
name: Check commits | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: classabbyamp/treeless-checkout-action@v1 | |
- name: Check commit messages | |
run: res/ci/commit-lint.sh |