Skip to content

Commit 5a599e3

Browse files
authored
Update slack url (#138)
* Update slack links * Update URLs * fix atmos demo gif
1 parent 67b5db6 commit 5a599e3

File tree

12 files changed

+159
-162
lines changed

12 files changed

+159
-162
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ assignees: ''
77

88
---
99

10-
Found a bug? Maybe our [Slack Community](https://slack.cloudposse.com) can help.
10+
Found a bug? Maybe our [Slack Community](https://cloudposse.com/slack) can help.
1111

12-
[![Slack Community](https://slack.cloudposse.com/badge.svg)](https://slack.cloudposse.com)
12+
[![Slack Community](https://slack.cloudposse.com/for-the-badge.svg)](https://cloudposse.com/slack)
1313

1414
## Describe the Bug
1515
A clear and concise description of what the bug is.
@@ -34,4 +34,4 @@ Anything that will help us triage the bug will help. Here are some ideas:
3434
- Version [e.g. 10.15]
3535

3636
## Additional Context
37-
Add any other context about the problem here.
37+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
blank_issues_enabled: false
22

33
contact_links:
4-
54
- name: Community Slack Team
6-
url: https://cloudposse.com/slack/
5+
url: https://cloudposse.com/slack
76
about: |-
87
Please ask and answer questions here.
98
@@ -15,4 +14,4 @@ contact_links:
1514
- name: DevOps Accelerator Program
1615
url: https://cloudposse.com/accelerate/
1716
about: |-
18-
Own your infrastructure in record time. We build it. You drive it.
17+
Own your infrastructure in record time. We build it. You drive it.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ assignees: ''
77

88
---
99

10-
Have a question? Please checkout our [Slack Community](https://slack.cloudposse.com) or visit our [Slack Archive](https://archive.sweetops.com/).
10+
Have a question? Please checkout our [Slack Community](https://cloudposse.com/slack) or visit our [Slack Archive](https://archive.sweetops.com/).
1111

12-
[![Slack Community](https://slack.cloudposse.com/badge.svg)](https://slack.cloudposse.com)
12+
[![Slack Community](https://slack.cloudposse.com/for-the-badge.svg)](https://cloudposse.com/slack)
1313

1414
## Describe the Feature
1515

16-
A clear and concise description of what the bug is.
16+
A clear and concise description of what the bug is.
1717

1818
## Expected Behavior
1919

.github/mergify.yml

Lines changed: 80 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,150 +1,149 @@
1-
21
# These are YAML anchor definitions to avoid repetition and make the file more readable
32
shared:
43
# Automated pull requests from bot users
54
is_a_bot: &is_a_bot
65
- or:
7-
- "author=cloudpossebot"
8-
- "author=github-actions[bot]"
9-
- "author=dependabot[bot]"
10-
- "author=renovate[bot]"
6+
- "author=cloudpossebot"
7+
- "author=github-actions[bot]"
8+
- "author=dependabot[bot]"
9+
- "author=renovate[bot]"
1110

1211
# Not a bot user
1312
not_a_bot: &not_a_bot
1413
- and:
15-
- "-author=cloudpossebot"
16-
- "-author=github-actions[bot]"
17-
- "-author=dependabot[bot]"
18-
- "-author=renovate[bot]"
14+
- "-author=cloudpossebot"
15+
- "-author=github-actions[bot]"
16+
- "-author=dependabot[bot]"
17+
- "-author=renovate[bot]"
1918

2019
# Contribution is from an external contributor, not part of the organization
2120
is_external_contributor: &is_external_contributor
2221
- and:
23-
- "-author=@engineering"
24-
- "-author=@contributors"
25-
- "-author=@admins"
26-
- "-author=@bots"
27-
- "-author=@approvers"
28-
- "-author=@security"
29-
- and: *not_a_bot
22+
- "-author=@engineering"
23+
- "-author=@contributors"
24+
- "-author=@admins"
25+
- "-author=@bots"
26+
- "-author=@approvers"
27+
- "-author=@security"
28+
- and: *not_a_bot
3029

3130
# Default branches
3231
is_default_branch: &is_default_branch
3332
- and:
34-
- "base=main"
35-
- "base=master"
33+
- "base=main"
34+
- "base=master"
3635

3736
# Release branches
3837
is_release_branch: &is_release_branch
3938
- and:
40-
- "base~=^release/v\\d{1,2}$"
39+
- "base~=^release/v\\d{1,2}$"
4140

4241
# Not a work in progress
4342
not_wip: &not_wip
4443
- and:
45-
- "-title~=^(wip|WIP)"
46-
- "-label~=(WIP|wip|do-not-merge|do not merge|triage|stale|feedback|help needed)"
47-
- '-draft'
44+
- "-title~=^(wip|WIP)"
45+
- "-label~=(WIP|wip|do-not-merge|do not merge|triage|stale|feedback|help needed)"
46+
- "-draft"
4847

4948
# Label indicates some action is needed
5049
needs_attention: &needs_attention
5150
- and:
52-
- "label~=(triage|stale|feedback|help needed)"
51+
- "label~=(triage|stale|feedback|help needed)"
5352

5453
# Do not merge this PR
5554
do_not_merge: &do_not_merge
5655
- or:
57-
- "label~=(do-not-merge|do not merge)"
58-
- "title~=(do-not-merge|do not merge)"
56+
- "label~=(do-not-merge|do not merge)"
57+
- "title~=(do-not-merge|do not merge)"
5958

6059
# Is a work in progress
6160
is_wip: &is_wip
6261
- or:
63-
- "title~=^(wip|WIP)"
64-
- "label~=(WIP|wip)"
65-
- and: *do_not_merge
66-
- and: *needs_attention
67-
- 'draft'
62+
- "title~=^(wip|WIP)"
63+
- "label~=(WIP|wip)"
64+
- and: *do_not_merge
65+
- and: *needs_attention
66+
- "draft"
6867

6968
# Not in conflict
7069
not_in_conflict: &not_in_conflict
7170
- and:
72-
- "-conflict"
73-
- "-label~=(conflict)"
71+
- "-conflict"
72+
- "-label~=(conflict)"
7473

7574
# Properly titled and described
7675
pr_has_metadata: &pr_has_metadata
7776
- and:
78-
- "title~=(^[0-9A-Za-z]+)"
79-
- body~=[0-9A-Za-z]{3,}\\s+[0-9A-Za-z]{3,}\\s+[0-9A-Za-z]{3,}
80-
- -body~=(Describe high-level what changed)
77+
- "title~=(^[0-9A-Za-z]+)"
78+
- body~=[0-9A-Za-z]{3,}\\s+[0-9A-Za-z]{3,}\\s+[0-9A-Za-z]{3,}
79+
- -body~=(Describe high-level what changed)
8180

8281
# Has reviews and no changes requested
8382
is_approved: &is_approved
8483
- and:
85-
- '#approved-reviews-by>=1'
86-
- '#changes-requested-reviews-by=0'
87-
- "#review-threads-unresolved=0"
88-
- "#commented-reviews-by=0"
84+
- "#approved-reviews-by>=1"
85+
- "#changes-requested-reviews-by=0"
86+
- "#review-threads-unresolved=0"
87+
- "#commented-reviews-by=0"
8988

9089
# Checks are passing
9190
checks_are_passing: &checks_are_passing
9291
- and:
93-
- "#check-pending=0"
94-
- "#status-failure=0"
92+
- "#check-pending=0"
93+
- "#status-failure=0"
9594

9695
# Only for terraform files
9796
require_terraform_checks_are_passing: &require_terraform_checks_are_passing
9897
- or:
99-
- "-files~=\\.tf$"
100-
- and:
101-
- "check-success=test/bats"
102-
- "check-success=test/terratest"
103-
- -status-failure~=^(terratest|terraform)$
98+
- "-files~=\\.tf$"
99+
- and:
100+
- "check-success=test/bats"
101+
- "check-success=test/terratest"
102+
- -status-failure~=^(terratest|terraform)$
104103

105104
# CODEOWNERS check did not run or is not passing
106105
require_codeowners_checks_are_passing: &require_codeowners_checks_are_passing
107106
- or:
108-
- "-files=CODEOWNERS"
109-
- and:
110-
- "check-success=validate-codeowners"
107+
- "-files=CODEOWNERS"
108+
- and:
109+
- "check-success=validate-codeowners"
111110

112111
# Has changes to terraform code
113112
is_terraform: &is_terraform
114113
- and:
115-
- "files~=\\.tf$"
114+
- "files~=\\.tf$"
116115

117116
# It's not closed or merged
118117
is_open: &is_open
119118
- and:
120-
- -merged
121-
- -closed
119+
- -merged
120+
- -closed
122121

123122
# Was recently updated one minute ago
124123
is_recent_commit: &is_recent_commit
125124
- and:
126-
- commits[*].date_committer > 1 minutes ago
125+
- commits[*].date_committer > 1 minutes ago
127126

128127
# README.md is updated together with README.yaml
129128
readme_updated: &readme_updated
130129
- or:
131-
- and:
132-
- -files=README.md
133-
- -files=README.yaml
134-
- and:
135-
- files=README.md
136-
- files=README.yaml
130+
- and:
131+
- -files=README.md
132+
- -files=README.yaml
133+
- and:
134+
- files=README.md
135+
- files=README.yaml
137136

138137
# Needs Cloud Posse review
139138
needs_cloudposse: &needs_cloudposse
140139
- or:
141-
- "files~=(mergify|settings|dependabot|renovate|CODEOWNERS|\\.github|Makefile|Dockerfile)"
142-
- "label~=(cloudposse)"
140+
- "files~=(mergify|settings|dependabot|renovate|CODEOWNERS|\\.github|Makefile|Dockerfile)"
141+
- "label~=(cloudposse)"
143142

144143
# Has no changes
145144
has_no_changes: &has_no_changes
146145
- and:
147-
- "#files=0"
146+
- "#files=0"
148147

149148
# All the rules for the Pull Request
150149
pull_request_rules:
@@ -291,7 +290,7 @@ pull_request_rules:
291290
- name: "remove triage label if approved"
292291
conditions:
293292
- and: *is_open
294-
- '#approved-reviews-by>=1'
293+
- "#approved-reviews-by>=1"
295294
actions:
296295
label:
297296
remove:
@@ -353,9 +352,9 @@ pull_request_rules:
353352
- and: *is_default_branch
354353
- "label~=(stale)"
355354
- or:
356-
- "label~=(feedback)"
357-
- '#commented-reviews-by > 0'
358-
- '#changes-requested-reviews-by > 0'
355+
- "label~=(feedback)"
356+
- "#commented-reviews-by > 0"
357+
- "#changes-requested-reviews-by > 0"
359358
- updated-at < 30 days ago
360359
actions:
361360
close:
@@ -405,9 +404,9 @@ pull_request_rules:
405404
- "no-changes"
406405
close:
407406
message: |
408-
This pull request was automatically closed as it no longer contains any changes.
409-
410-
This typically happens when another merged pull request has already included this request's
407+
This pull request was automatically closed as it no longer contains any changes.
408+
409+
This typically happens when another merged pull request has already included this request's
411410
proposed modifications into the default branch.
412411
413412
- name: welcome new contributors
@@ -422,27 +421,27 @@ pull_request_rules:
422421
actions:
423422
comment:
424423
message: |
425-
Thanks @{{author}} for creating this pull request!
424+
Thanks @{{author}} for creating this pull request!
426425
427426
A maintainer will review your changes shortly. Please don't be discouraged if it takes a while.
428427
429428
While you wait, make sure to review our [contributor guidelines](https://github.com/cloudposse/.github/blob/main/CONTRIBUTING.md).
430429
431430
> [!TIP]
432431
> #### Need help or want to ask for a PR review to be expedited?
433-
> Join us on [Slack](https://slack.cloudposse.com) in the `#pr-reviews` channel.
432+
> Join us on [Slack](https://cloudposse.com/slack) in the `#pr-reviews` channel.
434433
435434
- name: add triage label for new pull requests
436435
conditions:
437436
- and: *is_open
438437
- and: *not_a_bot
439-
- '#label=0'
438+
- "#label=0"
440439
# When the PR is approved, the triage label is removed. Do not add it back
441-
- '#approved-reviews-by=0'
440+
- "#approved-reviews-by=0"
442441
- or:
443-
- created-at > 5 minutes ago
444-
- commits[*].date_committer > 5 minutes ago
445-
- updated-at > 7 days ago
442+
- created-at > 5 minutes ago
443+
- commits[*].date_committer > 5 minutes ago
444+
- updated-at > 7 days ago
446445
actions:
447446
label:
448447
add:
@@ -491,7 +490,7 @@ pull_request_rules:
491490
> #### Cloud Posse Engineering Team Review Required
492491
> This pull request modifies files that require Cloud Posse's review. Please be patient, and a core maintainer will review your changes.
493492
>
494-
> To expedite this process, reach out to us on [Slack](https://slack.cloudposse.com) in the `#pr-reviews` channel.
493+
> To expedite this process, reach out to us on [Slack](https://cloudposse.com/slack) in the `#pr-reviews` channel.
495494
496495
- name: rebase pull request when it's more than 10 commits behind main
497496
conditions:
@@ -513,10 +512,10 @@ pull_request_rules:
513512
- name: "Comment on PRs during code freeze and close them"
514513
conditions:
515514
- and:
516-
- "base=main" # or whichever branch the freeze applies to
517-
- "created-at > 2024-11-12" # Start date of the code freeze
518-
- "repository-full-name=cloudposse/terraform-aws-components" # Apply only to cloudposse/terraform-aws-components
519-
- "label != force" # Skip PR auto close
515+
- "base=main" # or whichever branch the freeze applies to
516+
- "created-at > 2024-11-12" # Start date of the code freeze
517+
- "repository-full-name=cloudposse/terraform-aws-components" # Apply only to cloudposse/terraform-aws-components
518+
- "label != force" # Skip PR auto close
520519
actions:
521520
close:
522521
message: |-
@@ -527,7 +526,6 @@ pull_request_rules:
527526
> All future updates, contributions, and issues should be directed to the respective component repositories in the new organization.
528527
>
529528
> [Learn more](https://github.com/cloudposse/terraform-aws-components/issues/1177) about the migration.
530-
531529
532530
#- name: mergeable
533531
# conditions:

0 commit comments

Comments
 (0)