Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wolveix committed Sep 10, 2024
1 parent df2817f commit f8ef09a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github: [wolveix]
github: [ wolveix ]
custom: https://paypal.me/wolveix
18 changes: 12 additions & 6 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ assignees: ''
A clear and concise description of what the bug is.

**Your Runtime Command or Docker Compose File**
Please censor anything sensitive.
Please censor anything sensitive. Your runtime command might look like this:

```shell
docker run --name="satisfactory" -p 7777 -v ./satisfactory:/config wolveix/satisfactory-server:latest
```

**System Specs (please complete the following information):**
If you're on Linux, just paste the following block as a single command, and paste the output here.
```

```shell
echo "===== START ISSUE REPORT =====
OS: $(uname -a)
CPU: $(lscpu | grep 'Model name:' | sed 's/Model name:[[:space:]]*//g')
Expand All @@ -24,10 +29,11 @@ HDD: $(df -h | awk '$NF=="/"{printf "%dGB/%dGB (%s used)\n", $3,$2,$5}')
```

Alternatively, you can find the information manually. Here's what we're looking for:
- OS: [e.g. Ubuntu 18.04 x86_64] (Linux: `uname -a`)
- CPU: [e.g. AMD Ryzen 5 3600 6-Core Processor] (Linux: `lscpu`)
- RAM: [e.g. 4GB/16GB] (Linux: `cat /proc/meminfo | grep Mem`)
- HDD; [e.g. 22GB/251GB (9% used)] (Linux: `df -h`)

- OS: [e.g. Ubuntu 18.04 x86_64] (Linux: `uname -a`)
- CPU: [e.g. AMD Ryzen 5 3600 6-Core Processor] (Linux: `lscpu`)
- RAM: [e.g. 4GB/16GB] (Linux: `cat /proc/meminfo | grep Mem`)
- HDD; [e.g. 22GB/251GB (9% used)] (Linux: `df -h`)

**Additional Context**
Add any other context about the problem here.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Login to GitHub Packages
uses: docker/login-action@v1
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Linting
on: [pull_request]
on: [ pull_request ]

jobs:
shellcheck:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Release
on:
on:
release:
types: [published]
types: [ published ]

jobs:
release:
Expand All @@ -10,13 +10,13 @@ jobs:
- uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Login to GitHub Packages
uses: docker/login-action@v1
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down

0 comments on commit f8ef09a

Please sign in to comment.