Skip to content

Create tag-action.yml #1

Create tag-action.yml

Create tag-action.yml #1

Workflow file for this run

name: tags
run-name: ${{ github.actor }} is making a tag
on:
workflow_call:
inputs:
name:
description: 'The name of the thing to run'
default: ''
required: true
type: string
works:
description: 'Whether or not it successfully works'
default: false
required: true
type: boolean
jobs:
Maketag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Try to fail
- run: exit 1
if: works