prov/cxi: Remove CXI_MAP_IOVA_ALLOC flag. #8
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: GH Man Page Updater | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'man/*.md' | |
- 'fabtests/man/*.md' | |
workflow_dispatch: | |
jobs: | |
gh-man-update: | |
name: GH Man Page Updater | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Debug information | |
env: | |
GITHUB_DATA: ${{ toJSON(github) }} | |
run: | | |
echo This is information that may be useful for debugging. | |
echo "$GITHUB_DATA" | |
- name: Check out the git repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Update the man pages in branch gh-pages | |
run: .github/workflows/gh-man.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO: ${{ github.event.repository.full_name }} | |
BASE_REF: ${{ github.event.repository.default_branch }} |