-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:runatlantis/atlantis into jz/add-co…
…ntributor-guide
- Loading branch information
Showing
7 changed files
with
139 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: pr-size | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
name: Label the PR size | ||
steps: | ||
- uses: codelytv/pr-size-labeler@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
xs_label: 'size/xs' | ||
xs_max_size: '10' | ||
s_label: 'size/s' | ||
s_max_size: '100' | ||
m_label: 'size/m' | ||
m_max_size: '500' | ||
l_label: 'size/l' | ||
l_max_size: '1000' | ||
xl_label: 'size/xl' | ||
# fail_if_xl: 'false' | ||
# message_if_xl: > | ||
# This PR exceeds the recommended size of 1000 lines. | ||
# Please make sure you are NOT addressing multiple issues with one PR. | ||
# Note this PR might be rejected due to its size. | ||
github_api_url: 'https://api.github.com' | ||
files_to_ignore: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const en = [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Guide', link: '/guide/' }, | ||
{ text: 'Docs', link: '/docs/' }, | ||
{ text: "Contributing", link: "/contributing/" }, | ||
{ text: 'Blog', link: 'https://medium.com/runatlantis' }, | ||
]; | ||
|
||
export default { en }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
const en = { | ||
'/guide/': [ | ||
'/guide/', | ||
'/guide/test-drive', | ||
'/guide/testing-locally', | ||
], | ||
'/docs/': [ | ||
{ | ||
text: 'Installing Atlantis', | ||
collapsible: true, | ||
children: [ | ||
'/docs/installation-guide', | ||
'/docs/requirements', | ||
'/docs/access-credentials', | ||
'/docs/webhook-secrets', | ||
'/docs/deployment', | ||
'/docs/configuring-webhooks', | ||
'/docs/provider-credentials', | ||
] | ||
}, | ||
{ | ||
text: 'Configuring Atlantis', | ||
collapsible: true, | ||
children: [ | ||
{ | ||
text: 'Overview', | ||
link: '/docs/configuring-atlantis', | ||
}, | ||
'/docs/server-configuration', | ||
'/docs/server-side-repo-config', | ||
'/docs/pre-workflow-hooks', | ||
'/docs/post-workflow-hooks', | ||
'/docs/policy-checking', | ||
'/docs/custom-workflows', | ||
'/docs/repo-level-atlantis-yaml', | ||
'/docs/upgrading-atlantis-yaml', | ||
'/docs/command-requirements', | ||
'/docs/checkout-strategy', | ||
'/docs/terraform-versions', | ||
'/docs/terraform-cloud', | ||
'/docs/using-slack-hooks', | ||
'/docs/stats', | ||
'/docs/faq', | ||
] | ||
}, | ||
{ | ||
text: 'Using Atlantis', | ||
collapsible: true, | ||
children: [ | ||
{ | ||
text: 'Overview', | ||
link: '/docs/using-atlantis', | ||
}, | ||
'/docs/api-endpoints', | ||
] | ||
}, | ||
{ | ||
text: 'How Atlantis Works', | ||
collapsible: true, | ||
children: [ | ||
{ | ||
text: 'Overview', | ||
link: '/docs/how-atlantis-works', | ||
}, | ||
'/docs/locking', | ||
'/docs/autoplanning', | ||
'/docs/automerging', | ||
'/docs/security', | ||
] | ||
}, | ||
{ | ||
text: 'Real-time Terraform Logs', | ||
collapsible: true, | ||
children: [ | ||
'/docs/streaming-logs', | ||
] | ||
}, | ||
{ | ||
text: 'Troubleshooting', | ||
collapsible: true, | ||
children: [ | ||
'/docs/troubleshooting-https', | ||
] | ||
} | ||
] | ||
}; | ||
|
||
export default { en }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters