🚀 pip: Bump sphinx from 7.1.2 to 7.2.4 #96
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: Jürgen Mülbert <juergen.muelbert@web.de> | |
# | |
# SPDX-License-Identifier: EUPL-1.2 | |
# | |
name: "Write good" | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: ["main"] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
write_good_job: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
name: A job to lint Markdown files | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- name: write-good action step | |
id: write-good | |
uses: tomwhross/write-good-action@v1.6 | |
# Use the output from the `write-good` step | |
- name: Get the write-good output | |
run: echo "${{ steps.write-good.outputs.result }}" | |
- name: Post comment | |
uses: mshick/add-pr-comment@v2 | |
if: ${{ steps.write-good.outputs.result }} | |
with: | |
message: | | |
${{ steps.write-good.outputs.result }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
allow-repeats: false # This is the default |