8000 Tags · hashicorp/terraform-random-tfe-utility · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: hashicorp/terraform-random-tfe-utility

Tags

v0.1.0

Toggle v0.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Callable create-jira-workflow callable with inputs (#95)

Example caller workflow:

```yaml
name: Create Jira Issue

on:
  issues:
    types: [opened, closed, deleted, reopened]
  pull_request_target:
    types: [opened, closed, reopened]
  issue_comment:
    types: [created]

jobs:
  call-workflow:
    uses: hashicorp/terraform-random-tfe-utility/.github/workflows/create-jira-issue.yml@main
    with:
      github-team: Terraform-Enterprise
      project: TF
      issue-extra-fields: |
        { "customfield_10091": ["TF-CLI"] }
    secrets: inherit
```
0