This GitHub Action creates a new issue based on an issue template file.
GitHub Actions are a way to make automated workflows that trigger when events occur on your GitHub repository, using a YAML file that lives in your repo. These actions can be used to easily perform Terraform tasks as part of your workflow.
Here's an example workflow that creates a new issue any time you push a commit:
```yaml
name: Create issue
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create issue
uses: azurenoops/terraform-github-issues@v1
```
The scripts and documentation in this project are released under the MIT License
Contributions are welcome! See Contributor's Guide