Replace requests with httpx #58
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
# SPDX-FileCopyrightText: © 2024 Tim Weber | |
# | |
# SPDX-License-Identifier: AGPL-3.0-or-later | |
name: DCO Compliance Check | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
check_dco: | |
runs-on: ubuntu-latest | |
name: Check DCO Signoff | |
steps: | |
- name: Run dco-check | |
uses: christophebedard/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |