Skip to content

Commit

Permalink
Create tag-action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsunami014 authored Nov 10, 2023
1 parent 9e65220 commit 32a230b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tag-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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

0 comments on commit 32a230b

Please sign in to comment.