We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1946d0 commit ba56834Copy full SHA for ba56834
infrastructure/repository/maintainer-list.tf
@@ -0,0 +1,9 @@
1
+// A list of maintainers to be used as an "allow list" for various GitHub Actions.
2
+// This allows us to make various "exceptions" for maintainers, such as automatically
3
+// removing the `needs-triage` label from new Issues and Pull Requests
4
+//
5
+resource "github_actions_secret" "maintainer_list" {
6
+ repository = "terraform-provider-aws"
7
+ secret_name = "MAINTAINER_LIST"
8
+ plaintext_value = "['anGie44', 'breathingdust', 'ewbankkit', 'gdavison', 'johnsonaj', 'justinretzolk', 'maryelizbeth', 'YakDriver', 'zhelding']"
9
+}
0 commit comments