prov/ucx: Fix multi-threading support #12445
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: Man Page Converter | |
| permissions: {} | |
| on: | |
| push: | |
| paths: | |
| - 'man/*.md' | |
| - 'fabtests/man/*.md' | |
| workflow_dispatch: | |
| jobs: | |
| nroff-elves-scheduled: | |
| name: The Nroff Elves | |
| 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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Get the required packages | |
| run: sudo apt install -y pandoc | |
| - name: Build the nroff man pages | |
| run: .github/workflows/nroff-elves.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REPO: ${{ github.event.repository.full_name }} | |
| BASE_REF: ${{ github.ref_name }} |