Review fixes #6023
Workflow file for this run
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
| --- | |
| # DESCRIPTION: Github actions config | |
| # SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 | |
| # | |
| name: Contributor Agreement | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' # Avoid duplicates: only run the PR, not the push | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| Test: | |
| name: "'docs/CONTRIBUTORS' was signed" | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: test_regress/t/t_dist_contributors.py |