Rewrites P-Corp uniform description #2465
Workflow file for this run
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 workflow was added in the 515 compatibility PR - https://github.com/tgstation/tgstation/pull/71161 | |
# By having this in your repository, we know that you have that PR merged as well. | |
# This will be REMOVED when 515 is fully compatible and ready, but for now we need this | |
# to prevent merge skew. | |
# In the future, this will be a more proper system where commits can be added into a text file, | |
# but that's a lot more difficult and I'm in a huge time crunch right now. | |
# Relevant Regex | |
# Global | |
# "\/proc/(\w+)" and " \/proc/(\w+)" and ",\/proc/(\w+)" | |
# Typed | |
# "([\w/]+?)/?\.proc/(\w+)" and ",([\w/]+?)/?\.proc/(\w+)" | |
# Proc | |
# "\.proc/(\w+)" and ",\.proc/(\w+)" and ", \.proc/(\w+)" | |
name: "515 Compatibility Pass" | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
has_515_compatibility: | |
name: Has 515 Compatibility | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: echo "You're ready to go!" |