Add qcow2 as supported format by xcp-rrdd-iostat #17
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: ShellCheck | |
permissions: {} | |
on: | |
pull_request: | |
merge_group: | |
concurrency: # On new push, cancel old workflows from the same PR, branch or tag: | |
group: sc-${{ github.workflow }}-${{github.event_name}}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# https://www.shellcheck.net/wiki/GitHub-Actions | |
# https://github.com/redhat-plumbers-in-action/differential-shellcheck?tab=readme-ov-file#usage | |
shell-test: | |
name: Differential ShellCheck | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
pull-requests: write # allow commenting on the PR | |
security-events: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# If needed severity levels can be controlled here | |
# severity: warning | |
- name: Differential ShellCheck | |
uses: redhat-plumbers-in-action/differential-shellcheck@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |