You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This GitHub Action creates a new issue based on an issue template file.
14
+
15
+
[GitHub Actions](https://github.com/features/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.
16
+
These actions can be used to easily perform [Terraform](https://www.terraform.io/) tasks as part of your workflow.
17
+
18
+
Here's an example workflow that creates a new issue any time you push a commit:
19
+
20
+
```yaml
21
+
name: Create issue
22
+
on: [push]
23
+
24
+
jobs:
25
+
build:
26
+
runs-on: ubuntu-latest
27
+
steps:
28
+
- uses: actions/checkout@v2
29
+
- name: Create issue
30
+
uses: azurenoops/terraform-github-issues@v1
31
+
```
32
+
33
+
## License
34
+
35
+
The scripts and documentation in this project are released under the [MIT License](LICENSE)
36
+
37
+
## Contributions
38
+
39
+
Contributions are welcome! See [Contributor's Guide](CONTRIBUTING.md)
0 commit comments