20 changed files with 74 additions and 81 deletions
@ -1,4 +1,4 @@ |
|||
name: Add to project |
|||
name: Add to Project |
|||
on: |
|||
issues: |
|||
types: |
|||
@ -7,10 +7,10 @@ on: |
|||
|
|||
jobs: |
|||
add-to-project: |
|||
name: Add game server requests to project |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- uses: actions/[email protected] |
|||
- name: Add to Project |
|||
uses: actions/[email protected] |
|||
with: |
|||
project-url: https://github.com/orgs/GameServerManagers/projects/11 |
|||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |
|||
|
@ -1,4 +1,4 @@ |
|||
name: Github to Bitbucket sync |
|||
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: |
|||
@ -6,16 +6,17 @@ on: |
|||
branches: |
|||
- master |
|||
- develop |
|||
|
|||
jobs: |
|||
GitHub-to-Bitbucket: |
|||
gitHub-to-bitbucket: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- name: webfactory/[email protected] |
|||
- name: SSH Agent |
|||
uses: webfactory/[email protected] |
|||
with: |
|||
ssh-private-key: ${{ secrets.BITBUCKET_SECRET }} |
|||
|
|||
- name: wei/[email protected] |
|||
- name: Git Sync |
|||
uses: wei/[email protected] |
|||
with: |
|||
ssh_private_key: ${{ secrets.BITBUCKET_SECRET }} |
|||
|
@ -1,14 +0,0 @@ |
|||
name: Label sponsors |
|||
on: |
|||
pull_request: |
|||
types: [opened] |
|||
issues: |
|||
types: [opened] |
|||
jobs: |
|||
build: |
|||
name: is-sponsor-label |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- uses: JasonEtco/is-sponsor-label-action@v2 |
|||
env: |
|||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
@ -1,24 +1,30 @@ |
|||
name: "Issue Labeler" |
|||
name: Issue Labeler |
|||
on: |
|||
issues: |
|||
types: [opened, edited] |
|||
pull_request: |
|||
types: [opened, edited] |
|||
types: |
|||
- opened |
|||
- edited |
|||
|
|||
permissions: |
|||
issues: write |
|||
contents: read |
|||
|
|||
jobs: |
|||
triage: |
|||
permissions: |
|||
contents: read # for github/issue-labeler to get repo contents |
|||
issues: write # for github/issue-labeler to create or remove labels |
|||
issue-labeler: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- uses: github/[email protected] |
|||
- name: Issue Labeler |
|||
uses: github/[email protected] |
|||
with: |
|||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
|||
configuration-path: .github/labeler.yml |
|||
not-before: |
|||
enable-versioned-regex: 0 |
|||
include-title: 1 |
|||
|
|||
is-sponsor-label: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- name: Is Sponsor Label |
|||
uses: JasonEtco/is-sponsor-label-action@v2 |
|||
env: |
|||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|||
|
@ -3,12 +3,13 @@ on: |
|||
release: |
|||
types: |
|||
- published |
|||
|
|||
jobs: |
|||
trigger_build_docker-linuxgsm: |
|||
name: Trigger Build docker-linuxgsm |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- uses: convictional/[email protected] |
|||
- name: Trigger Workflow and Wait (linuxgsm) |
|||
uses: convictional/[email protected] |
|||
with: |
|||
owner: GameServerManagers |
|||
repo: docker-linuxgsm |
|||
@ -16,10 +17,10 @@ jobs: |
|||
workflow_file_name: docker-publish.yml |
|||
|
|||
trigger_build_docker-gameserver: |
|||
name: Trigger Build docker-linuxgsm |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- uses: convictional/[email protected] |
|||
- name: Trigger Workflow and Wait (gameserver) |
|||
uses: convictional/[email protected] |
|||
with: |
|||
owner: GameServerManagers |
|||
repo: docker-gameserver |
|||
|
Loading…
Reference in new issue