Browse Source

add bitbucket sync and tidied up bots

pull/2899/head
Daniel Gibbs 5 years ago
parent
commit
894ead178e
  1. 2
      .github/FUNDING.yml
  2. 4
      .github/ISSUE_TEMPLATE/bug_report.md
  3. 6
      .github/ISSUE_TEMPLATE/feature_request.md
  4. 2
      .github/ISSUE_TEMPLATE/new-server-request.md
  5. 6
      .github/pull_request_template.md
  6. 22
      .github/workflows/git-sync.yml

2
.github/FUNDING.yml

@ -3,7 +3,7 @@
github: dgibbs64 # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] github: dgibbs64 # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: dgibbs # Replace with a single Patreon username patreon: dgibbs # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username open_collective: # Replace with a single Open Collective username
ko_fi: dgibbs # Replace with a single Ko-fi username ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username liberapay: # Replace with a single Liberapay username

4
.github/ISSUE_TEMPLATE/bug_report.md

@ -1,6 +1,6 @@
--- ---
name: Bug report name: Bug report
about: Found a bug? Raise a report about: Found a bug? Raise a report.
--- ---
Issues raised here are **ONLY** for: Issues raised here are **ONLY** for:
@ -27,7 +27,7 @@ As a [user description], I want [desired action] so that [desired outcome].
* **Distro:** [Ubuntu 18.04] * **Distro:** [Ubuntu 18.04]
* **Game:** [Garry's Mod] * **Game:** [Garry's Mod]
* **Command:** [Monitor] * **Command:** [Monitor]
* **LinuxGSM version:** [v12.34.56] * **LinuxGSM version:** [v20.1.3]
## Further Information ## Further Information

6
.github/ISSUE_TEMPLATE/feature_request.md

@ -1,6 +1,6 @@
--- ---
name: Feature request name: Feature request
about: Suggest an idea for this project about: Suggest an idea for LinuxGSM.
--- ---
@ -25,10 +25,10 @@ As a [user description], I want [desired action] so that [desired outcome].
## Basic info ## Basic info
* **Distro:** [Ubuntu 18.04] * **Distro:** [Ubuntu 20.04]
* **Game:** [Garry's Mod] * **Game:** [Garry's Mod]
* **Command:** [Monitor] * **Command:** [Monitor]
* **LinuxGSM version:** [v12.34.56] * **LinuxGSM version:** [v20.1.3]
## Further Information ## Further Information

2
.github/ISSUE_TEMPLATE/new-server-request.md

@ -1,6 +1,6 @@
--- ---
name: New server request name: New server request
about: Suggest a new game server to be added about: Suggest a new game server to be added.
--- ---

6
.github/pull_request_template.md

@ -6,7 +6,7 @@ Fixes #[issue]
## Type of change ## Type of change
* [ ] Bug fix (change which fixes an issue). * [ ] Bug fix (a change which fixes an issue).
* [ ] New feature (change which adds functionality). * [ ] New feature (change which adds functionality).
* [ ] New Server (new server added). * [ ] New Server (new server added).
* [ ] Refactor (restructures existing code). * [ ] Refactor (restructures existing code).
@ -20,9 +20,9 @@ PR will not be merged until all steps are complete.
* [ ] This pull request uses the `develop` branch as its base. * [ ] This pull request uses the `develop` branch as its base.
* [ ] This pull request Subject follows the Conventional Commits standard. * [ ] This pull request Subject follows the Conventional Commits standard.
* [ ] This code follows the style guidelines of this project. * [ ] This code follows the style guidelines of this project.
* [ ] I have performed a self-review of my own code. * [ ] I have performed a self-review of my code.
* [ ] I have checked that this code is commented where required. * [ ] I have checked that this code is commented where required.
* [ ] I have provided a detailed enough description of this PR. * [ ] I have provided a detailed with enough description of this PR.
* [ ] I have checked If documentation needs updating. * [ ] I have checked If documentation needs updating.
## Documentation ## Documentation

22
.github/workflows/git-sync.yml

@ -0,0 +1,22 @@
name: Github to Bitbucket sync
# This action will sync the github repo with a backup bitbucket repo.
# This will allow LinuxGSM to use Bitbucket as and alternative download if github fails.
on: push
jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- name: ssh
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.BITBUCKET_SECRET }}
ssh_private_key: ${{ secrets.BITBUCKET_SECRET }}
- name: repo-sync
uses: wei/git-sync@v2
with:
source_repo: "https://github.com/GameServerManagers/LinuxGSM"
source_branch: "refs/heads/*"
destination_repo: "[email protected]:dgibbs64/linuxgsm.git"
destination_branch: "refs/heads/*"
ssh_private_key: ${{ secrets.BITBUCKET_SECRET }}
Loading…
Cancel
Save