Skip to content

Bump cryptiles from 3.1.2 to 4.1.3 #39

Bump cryptiles from 3.1.2 to 4.1.3

Bump cryptiles from 3.1.2 to 4.1.3 #39

Workflow file for this run

# This is a basic workflow that is manually triggered
name: Manual workflow
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Person to greet'
# Default value if no value is explicitly provided
default: 'World'
# Input has to be provided for the workflow to run
required: true
pull_request:
types: [opened, synchronize, reopened, closed]
push:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
greet:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Create status
run: |

Check failure on line 34 in .github/workflows/manual.yml

View workflow run for this annotation

GitHub Actions / Manual workflow

Invalid workflow file

The workflow is not valid. .github/workflows/manual.yml (Line: 34, Col: 12): Unrecognized named-value: 'GITHUB_SHA'. Located at position 1 within expression: GITHUB_SHA
echo "https://api.github.com/repos/${{ github.repository }}/statuses/${{ GITHUB_SHA }}";
curl --request POST \
--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ GITHUB_SHA }} \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
--data '{
"state": "fail",
"context": "jamestest/cicd-testing",
"description": "My Description: ${{ github.event.workflow_run.conclusion }}",
"target_url": "${{ github.event.workflow_run.html_url }}"
}'
# Runs a single command using the runners shell
- name: Send greeting
run: echo "Hello ${{ github.event.inputs.name }}"