Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pt-br localization #42

Open
wants to merge 15 commits into
base: 1.2.4.0-release
Choose a base branch
from
263 changes: 0 additions & 263 deletions .gitattributes

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/AVC-VersionFileValidator.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# v1.4.0
# update checkout to v3
# v1.4.1
# update checkout to v3.0.2
# update AVC to v1.4
# This is a standard workflow to validate all .version files
# found in the root directory of the repository and any subdirectories,
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v3.0.2
with:
fetch-depth: 1
- name: Validate files
Expand Down
17 changes: 10 additions & 7 deletions .github/workflows/createIndexesfromMarkdown.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 1.0.2.1
# 1.0.5.0
# created: 05 Feb 2022
# updated: 18 Mar 2022
# updated: 05 Oct 2022
# update checkout to v3.0.2
# Create Indexes from Markdown
# https://github.com/DaanV2/Markdown-Action-Create-Indexes

Expand All @@ -18,17 +19,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DaanV2/[email protected]
# - uses: actions/checkout@latest
- uses: actions/checkout@main
# - uses: DaanV2/Markdown-Action-Create-Indexes@latest
- uses: DaanV2/Markdown-Action-Create-Indexes@main
with:
folder: ${{github.workspace}}/docs/

- name: Commit changes
continue-on-error: true
run: |
cd ${{github.workspace}}
git config --global user.email "Bot@Example.com"
git config --global user.name "DaanV2 Bot"
git config --global user.email "[email protected].com"
git config --global user.name "zer0Kerbal"
git add .
git commit -m "auto: Generated markdown indexes"
git push
git push
60 changes: 55 additions & 5 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,69 @@
# 1.1.0.2
# 1.2.0.1
# created: 02 Dec 2021
# updated: 18 Mar 2022
# updated: 05 Oct 2022
# An action for filtering pull requests and issues from first-time contributors.
# https://github.com/marketplace/actions/first-interaction

# this file: CC BY-ND 4.0

name: Greetings

on: [pull_request, issues, issue_comment, discussion_comment, fork, gollum, workflow_dispatch]

jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/[email protected]
# - uses: actions/first-interaction@latest
- uses: actions/first-interaction@main
# continue-on-error: true
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thank you. Kindly read [contributiing.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CONTRIBUTING.md), [code_of_conduct.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CODE_OF_CONDUCT.md) and [styleguide.md](https://github.com/zer0Kerbal/.github/blob/master/.github/STYLEGUIDE.md). These are boilerplate.'
pr-message: 'Thank you. Kindly read [contributiing.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CONTRIBUTING.md), [code_of_conduct.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CODE_OF_CONDUCT.md) and [styleguide.md](https://github.com/zer0Kerbal/.github/blob/master/.github/STYLEGUIDE.md). These are boilerplate.'
issue-message: |
:+1: Thank you @${{ github.actor }} :octocat:

:question::grey_question:

Have you reviewed the open issues logs and recent changelogs?

In order to help us help you, please provide:
* <KSP_ROOT>/KSP.LOG
* and one of the following:
* if Module Manger is installed
* <KSP_ROOT>/GameData/ModuleManager.ConfigCache
* if Module Manger /L is installed
* <KSP_ROOT>/PluginData\ModuleManager\ConfigCache.cfg
* Screenshots of issue (if appropriate) (images tell a much stronger tale)

You can archive these files (rar or zip, sadly no 7zip) and drag-n-drop them into the issue

:vibration_mode::eyes:Please either watch this repositiory for updates.

:speech_balloon:Kindly read our simple guides to:
* [contributing](https://github.com/zer0Kerbal/.github/blob/master/.github/CONTRIBUTING.md)
* our expected [code of conduct](https://github.com/zer0Kerbal/.github/blob/master/.github/CODE_OF_CONDUCT.md) (hint: we are all adults here)
* our [style guide.md](https://github.com/zer0Kerbal/.github/blob/master/.github/STYLEGUIDE.md)
These are boilerplate.'
pr-message: |
:+1: Thank you @${{ github.actor }}. :octocat:

:zap:

We (@zer0Kerbal) really do appreciate your contributing! :clap:

If you are fixing a bug, please reference the issue number in the description.
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.

:vibration_mode::eyes:Please watch and :star: this repositiory for updates.

All contributions under this repositiory's license, unless specific allowances have been made in advance with @zer0Kerbal.

:speech_balloon:Kindly read our simple guides to:
:point_right: [contributing](https://github.com/zer0Kerbal/.github/blob/master/.github/CONTRIBUTING.md)
:point_right: our expected [code of conduct](https://github.com/zer0Kerbal/.github/blob/master/.github/CODE_OF_CONDUCT.md) (hint: we are all adults here)
:point_right: our [style guide.md](https://github.com/zer0Kerbal/.github/blob/master/.github/STYLEGUIDE.md)
These are boilerplate.'
Loading