Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
konushi committed Sep 2, 2023
2 parents b456677 + 7ea11a6 commit b5a8435
Show file tree
Hide file tree
Showing 47 changed files with 130,960 additions and 33,598 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy

concurrency:
group: deploy

on:
workflow_dispatch:
push:
branches: ['master, devtest']

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Trigger update
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.GAME1_HOST }}
username: ${{ secrets.GAME1_USERNAME }}
key: ${{ secrets.GAME1_SSH_KEY }}
script: |
cd /opt/ss13/paradise/
./upgrade.sh
14 changes: 10 additions & 4 deletions .github/workflows/label_merge_conflicts.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
name: 'Merge Conflict Detection'

on:
push:
branches:
- master
pull_request_target:
types: [ready_for_review, opened, synchronize, reopened]
jobs:
triage:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-22.04
steps:
- uses: mschilde/auto-label-merge-conflicts@master
- uses: eps1lon/actions-label-merge-[email protected]
with:
CONFLICT_LABEL_NAME: 'Merge Conflict'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
dirtyLabel: 'Merge Conflict'
repoToken: ${{ secrets.GITHUB_TOKEN }}
9 changes: 9 additions & 0 deletions SQL/updates220/50.220.3-50.220.4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS `discord_links` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ckey` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`discord_id` bigint(20) DEFAULT NULL,
`timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
`one_time_token` varchar(100) NOT NULL,
`valid` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
3 changes: 2 additions & 1 deletion _maps/base_map.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "map_files220\generic\centcomm.dmm" //SS220 EDIT - ORIGINAL: #include "map_files\generic\centcomm.dmm"
#include "map_files220\generic\centcomm.dmm" // SS220 EDIT - ORIGINAL: #include "map_files\generic\centcomm.dmm"
#include "map_files220\generic\Admin_Zone.dmm" // SS220 ADDITION
#define CC_TRANSITION_CONFIG DECLARE_LEVEL(CENTCOMM, SELFLOOPING, list(ADMIN_LEVEL, BLOCK_TELEPORT, IMPEDES_MAGIC))
#ifdef CIMAP
#include "ci_map_testing.dm"
Expand Down
Loading

0 comments on commit b5a8435

Please sign in to comment.