Media
-
+![Example Media Embed](https://example.com/thisimageisntreal.png)
@@ -23,10 +49,14 @@ Description.
# Changelog
-
+
:cl:
-- add: Added fun!
-- tweak: Tweaked fun!
+- add: Added fun :D
+- tweak: Tweaked fun
- fix: Fixed fun!
-- remove: Removed fun!
+- remove: Removed fun :(
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 694c83b602..4cfe775ed4 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -1,36 +1,56 @@
-"Changes: C#":
- - "**/*.cs"
+"Changes: Audio":
+ - changed-files:
+ - any-glob-to-any-file: "**/*.ogg"
+
+"Changes: C#":
+ - 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"
diff --git a/.github/workflows/build-docfx.yml b/.github/workflows/build-docfx.yml
index ca1a6f0af1..d37e37026d 100644
--- a/.github/workflows/build-docfx.yml
+++ b/.github/workflows/build-docfx.yml
@@ -21,7 +21,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 8.0.x
+ dotnet-version: 8.0.100
- name: Install dependencies
run: dotnet restore
diff --git a/.github/workflows/build-map-renderer.yml b/.github/workflows/build-map-renderer.yml
index 01575f64b9..c1790feadb 100644
--- a/.github/workflows/build-map-renderer.yml
+++ b/.github/workflows/build-map-renderer.yml
@@ -10,7 +10,7 @@ on:
jobs:
build:
- if: github.actor != 'PJBot' && github.event.pull_request.draft == false && github.actor != 'DeltaV-Bot'
+ if: github.actor != 'PJBot' && github.event.pull_request.draft == false && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14'
strategy:
matrix:
os: [ubuntu-latest]
@@ -36,7 +36,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 8.0.x
+ dotnet-version: 8.0.100
- name: Install dependencies
run: dotnet restore
diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml
index 519f5af6f4..bb0624e3ba 100644
--- a/.github/workflows/build-test-debug.yml
+++ b/.github/workflows/build-test-debug.yml
@@ -10,7 +10,7 @@ on:
jobs:
build:
- if: github.actor != 'PJBot' && github.event.pull_request.draft == false && github.actor != 'DeltaV-Bot'
+ if: github.actor != 'PJBot' && github.event.pull_request.draft == false && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14'
strategy:
matrix:
os: [ubuntu-latest]
@@ -36,7 +36,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 8.0.x
+ dotnet-version: 8.0.100
- name: Install dependencies
run: dotnet restore
diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml
index a44cac2cd1..79cfdd83cd 100644
--- a/.github/workflows/changelog.yml
+++ b/.github/workflows/changelog.yml
@@ -16,41 +16,40 @@ jobs:
permissions:
contents: write
steps:
- - name: Checkout Master
- uses: actions/checkout@v3
- with:
- token: ${{ secrets.BOT_TOKEN }}
- ref: "${{ vars.CHANGELOG_BRANCH }}"
+ - name: Checkout Master
+ uses: actions/checkout@v3
+ with:
+ token: ${{ secrets.BOT_TOKEN }}
+ ref: ${{ vars.CHANGELOG_BRANCH }}
- - name: Setup Git
- run: |
- git config --global user.name "${{ vars.CHANGELOG_USER }}"
- git config --global user.email "${{ vars.CHANGELOG_EMAIL }}"
- shell: bash
+ - name: Setup Git
+ run: |
+ git config --global user.name "${{ vars.CHANGELOG_USER }}"
+ git config --global user.email "${{ vars.CHANGELOG_EMAIL }}"
+ shell: bash
- - name: Setup Node
- uses: actions/setup-node@v3
- with:
- node-version: 18.x
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: 18.x
- - name: Install Dependencies
- run: |
- cd "Tools/changelog"
- npm install
- shell: bash
- continue-on-error: true
+ - name: Install Dependencies
+ run: |
+ cd "Tools/changelogs"
+ npm install
+ shell: bash
- - name: Generate Changelog
- run: |
- cd "Tools/changelog"
- node changelog.js
- shell: bash
- continue-on-error: true
+ - name: Generate Changelog
+ run: |
+ cd "Tools/changelogs"
+ node changelog.js
+ shell: bash
- - name: Commit Changelog
- run: |
- git add *.yml
- git commit -m "${{ vars.CHANGELOG_MESSAGE }} (#${{ env.PR_NUMBER }})"
- git push
- shell: bash
- continue-on-error: true
+ - name: Commit Changelog
+ run: |
+ git pull origin master
+ git add *.yml
+ git commit -m "${{ vars.CHANGELOG_MESSAGE }} (#${{ env.PR_NUMBER }})"
+ git push
+ shell: bash
+ continue-on-error: true
diff --git a/.github/workflows/close-master-pr.yml b/.github/workflows/close-master-pr.yml
index 66843d35dd..a74e838099 100644
--- a/.github/workflows/close-master-pr.yml
+++ b/.github/workflows/close-master-pr.yml
@@ -1,4 +1,4 @@
-name: Close PR's on master
+name: Close PRs on master
on:
pull_request_target:
@@ -12,7 +12,7 @@ jobs:
steps:
- uses: superbrothers/close-pull-request@v3
with:
- comment: "Thank you for contributing to the Space Station 14 repository. Unfortunately, it looks like you submitted your pull request from the master branch. We suggest you follow [our git usage documentation](https://docs.spacestation14.com/en/general-development/setup/git-for-the-ss14-developer.html) \n\n You can move your current work from the master branch to another branch by doing `git branch