Skip to content

Commit cbafab5

Browse files
remalremal-github-actions
andauthored
Merge template repository changes: remal-github-actions/template-typescript (#2983)
Co-authored-by: remal-github-actions <77626445+remal-github-actions+sync-with-template@users.noreply.github.com>
1 parent 17f9b4f commit cbafab5

File tree

4 files changed

+38
-6
lines changed

4 files changed

+38
-6
lines changed

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,27 @@ indent_size = 2
432432
continuation_indent_size = 2
433433
ij_continuation_indent_size = 2
434434

435+
[{*.tf,*.tfvars,*.tfvars.*}]
436+
max_line_length = 999
437+
tab_width = 2
438+
indent_size = 2
439+
continuation_indent_size = 2
440+
ij_continuation_indent_size = 2
441+
ij_hcl-terraform_array_wrapping = normal
442+
ij_hcl-terraform_import_providers_automatically = true
443+
ij_hcl-terraform_keep_blank_lines_in_code = 2
444+
ij_hcl-terraform_keep_indents_on_empty_lines = false
445+
ij_hcl-terraform_keep_line_breaks = true
446+
ij_hcl-terraform_object_wrapping = normal
447+
ij_hcl-terraform_property_alignment = on_equals
448+
ij_hcl-terraform_run_tf_fmt_on_reformat = true
449+
ij_hcl-terraform_space_after_comma = true
450+
ij_hcl-terraform_space_before_comma = false
451+
ij_hcl-terraform_spaces_around_assignment_operators = true
452+
ij_hcl-terraform_spaces_within_braces = false
453+
ij_hcl-terraform_spaces_within_brackets = false
454+
ij_hcl-terraform_wrap_long_lines = false
455+
435456
[*.sql]
436457
max_line_length = 999
437458

.github/workflows/cancel-pr-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
pull_request:
55
types:
66
- closed
7-
- merged
87

98
permissions:
109
pull-requests: 'read'
@@ -17,4 +16,5 @@ jobs:
1716
timeout-minutes: 5
1817
steps:
1918
- name: Cancel PR actions
20-
uses: remal-github-actions/cancel-pr-actions@v1
19+
uses: Mergifyio/gha-cancel-workflow-runs-on-pr-close@v1
20+
#uses: remal-github-actions/cancel-pr-actions@v1

.gitignore

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Common:
2+
*~
3+
.DS_Store
4+
5+
16
# Logs:
27
log/
38
!**/src/**/log/
@@ -28,6 +33,14 @@ build/
2833
node_modules/
2934

3035

36+
# Terraform state and backup files
37+
*.tfstate
38+
*.tfstate.backup
39+
*.tfstate.lock.info
40+
.terraform/
41+
.terraform.lock.hcl
42+
43+
3144
# IntelliJ IDEA plugins:
3245
.intellijPlatform/
3346
.qodana/
@@ -68,10 +81,6 @@ out/
6881
.project
6982
.settings/
7083

71-
72-
# Mac:
73-
.DS_Store
74-
7584
# Remal GitHub actions:
7685
/.pnp.*
7786
/.yarn/*

.mergify/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pull_request_rules:
2424
review: { }
2525
merge:
2626
method: squash
27+
commit_message_template: '{{ title }} (#{{ number }})'
2728

2829
- name: Sync with template
2930
conditions:
@@ -44,3 +45,4 @@ pull_request_rules:
4445
review: { }
4546
merge:
4647
method: squash
48+
commit_message_template: '{{ title }} (#{{ number }})'

0 commit comments

Comments
 (0)