fix(gha)(deps): bump the github-actions group with 3 updates #34
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: Tom Ross | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: "Write good" | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: [main, develop, release] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: read | |
jobs: | |
write_good_job: | |
runs-on: ubuntu-latest | |
name: "A job to lint Markdown files" | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: "🧰 Checkout Source Code" | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: write-good action step | |
id: write-good | |
uses: tomwhross/write-good-action@5897a4ff597390bd521c5c3a6c062bf96147a341 # 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@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
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 |