-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into parkstation
Swapped one map protoype and renamed field.
- Loading branch information
Showing
9,906 changed files
with
244,667 additions
and
75,119 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
--- | ||
name: Request a Feature | ||
about: "Template for noting future planned features. Please ask for approval in the Discord if you aren't an organization Member before posting a feature request" | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- | ||
This is a loose format, write this however you need to | ||
Remove these comments before submitting | ||
--> | ||
|
||
# Description | ||
<!-- | ||
Explain your request in as much detail as you can | ||
--> | ||
|
||
I want Goldfish crackers | ||
|
||
# Media | ||
<!-- | ||
If applicable, add images or even a video to help explain your suggestion | ||
--> | ||
|
||
![Example Screenshot](https://example.com/thisimageisntreal.png) |
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 |
---|---|---|
@@ -1,39 +1,56 @@ | ||
"Changes: Audio": | ||
- "**/*.ogg" | ||
|
||
- changed-files: | ||
- any-glob-to-any-file: "**/*.ogg" | ||
|
||
"Changes: C#": | ||
- "**/*.cs" | ||
- changed-files: | ||
- any-glob-to-any-file: "**/*.cs" | ||
|
||
"Changes: Config": | ||
- "**/*.toml" | ||
- "**/*.config" | ||
- "*.json" | ||
- ".github/*.yml" | ||
- ".github/*.json" | ||
- ".vscode/*.json" | ||
- ".editorconfig" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.toml" | ||
- "**/*.config" | ||
- "*.json" | ||
- ".github/*.yml" | ||
- ".github/*.json" | ||
- ".vscode/*.json" | ||
- ".editorconfig" | ||
|
||
"Changes: Documentation": | ||
- "**/*.xml" | ||
- "**/*.md" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.xml" | ||
- "**/*.md" | ||
|
||
"Changes: Localization": | ||
- 'Resources/Locale/**/*.ftl' | ||
- changed-files: | ||
- any-glob-to-any-file: 'Resources/Locale/**/*.ftl' | ||
|
||
"Changes: Map": | ||
- "Resources/Maps/**/*.yml" | ||
- "Resources/Prototypes/Maps/**/*.yml" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "Resources/Maps/**/*.yml" | ||
- "Resources/Prototypes/Maps/**/*.yml" | ||
|
||
"Changes: Sprite": | ||
- "**/*.rsi/*.png" | ||
- "**/*.rsi/*.json" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.rsi/*.png" | ||
- "**/*.rsi/*.json" | ||
|
||
"Changes: UI": | ||
- "**/*.xaml*" | ||
- changed-files: | ||
- any-glob-to-any-file: "**/*.xaml*" | ||
|
||
"Changes: YML": | ||
- any: ["**/*.yml"] | ||
all: ["!Resources/Maps/**/*.yml", "!Resources/Prototypes/Maps/**/*.yml"] | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.yml" | ||
- all-globs-to-all-files: | ||
- "!Resources/Maps/**/*.yml" | ||
- "!Resources/Prototypes/Maps/**/*.yml" | ||
|
||
"Changes: Workflow": | ||
- ".github/workflows/*.yml" | ||
- changed-files: | ||
- any-glob-to-any-file: ".github/workflows/*.yml" |
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,24 @@ | ||
name: Discord Changelog | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 6 * * *' | ||
|
||
jobs: | ||
publish_changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
|
||
- name: Publish changelog | ||
run: Tools/actions_changelogs_since_last_run.py | ||
env: | ||
CHANGELOG_DIR: ${{ vars.CHANGELOG_DIR }} | ||
CHANGELOG_WEBHOOK: ${{ secrets.CHANGELOG_WEBHOOK }} | ||
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | ||
continue-on-error: true |
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,34 @@ | ||
name: PR Title Case | ||
on: | ||
pull_request_target: | ||
types: [opened, edited, synchronize] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
|
||
jobs: | ||
prtitlecase: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Master | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.BOT_TOKEN }} | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
|
||
- name: Install Dependencies | ||
run: | | ||
cd "Tools/prtitlecase" | ||
npm install | ||
shell: bash | ||
|
||
- name: Change Title | ||
run: | | ||
cd "Tools/prtitlecase" | ||
node index.js | ||
shell: bash |
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
Oops, something went wrong.