Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(udpate-drift-issue): add action #9

Merged
merged 2 commits into from
Aug 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions update-issue/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Update Issue
author: iStreamPlanet
description: Updates/creates/closes an issue matching the given title based on the other parameters
inputs:
github-token:
description: The GitHub token used to create an authenticated client
default: ${{ github.token }}
required: false
title:
description: The title to use to create or lookup issues
required: true
open:
description: If 'true' indicates that the issue should be created/updated with the given body. Any other value causes issues with the matching title to be closed
required: true
body:
description: The body to use when creating/updating an issue.
required: false
close-comment:
description: The comment to use when closing an existing issue.
required: false
runs:
using: "node12"
main: "dist/index.js"
Loading