Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Report run and failure with comment #53

Report run and failure with comment

Report run and failure with comment #53

Workflow file for this run

name: Command-Action
on:
pull_request:
issue_comment:
types: [created]
jobs:
cmd-check:
runs-on: ubuntu-latest
outputs:
commands: ${{ steps.command.outputs.commands }}
branch: ${{ steps.command.outputs.branch }}
name: Bot
steps:
- uses: paritytech/cmd-action/check@main
id: command
cmd-run:
needs: [cmd-check]
if: ${{ github.event.issue.pull_request }}
continue-on-error: true
runs-on: ubuntu-latest
strategy:
matrix:
command: ${{ fromJson(needs.cmd-check.outputs.commands) }}
name: Run command
steps:
- uses: paritytech/cmd-action/run@main
with:
branch: ${{ needs.cmd-check.outputs.branch }}
command: ${{ matrix.command.command }}
name: ${{ matrix.command.name }}
pr-number: ${{ github.event.issue.number || github.event.pull_request.number }}
# If you need to push your changes you can do so like this
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: cmd-action - changes
branch: ${{ needs.cmd-check.outputs.branch }}
pr-number: ${{ github.event.issue.number || github.event.pull_request.number }}
conclude:

Check failure on line 41 in .github/workflows/cmd-action.yml

View workflow run for this annotation

GitHub Actions / Command-Action

Invalid workflow file

The workflow is not valid. .github/workflows/cmd-action.yml (Line: 41, Col: 5): Unexpected value 'conclude'
runs-on: ubuntu-latest
name: Run completed
needs: [cmd-run] # It will only run if all the runs were completed
steps:
- name: Report Success
shell: bash
run: gh pr comment $NUMBER --repo ${{ github.repository }} --body "Completed action run. See logs <a href=\"$RUN\">here</a>."
env:
RUN: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
GH_TOKEN: ${{ github.token }}
NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }}