Browse Source
This commit updates the name of several GitHub workflows to use proper capitalization and adds more descriptive names. The changes include: - Add to project workflow: updated name from "Add game server requests to project" to "Add to Project" - Details check workflow: updated name from "Details Check" to "Check LinuxGSM game server config and parameter variables" - Git sync workflow: updated name from "Github to Bitbucket sync" to "Sync GitHub repo with backup Bitbucket repo" - Issue labeler workflow: updated name from "Issue Labeler" to "Automatically label issues based on configuration file" - Lock threads workflow: updated name from "Lock Threads" to "Automatically lock inactive threads after one week" - Potential duplicates workflow: updated name from "Potential Duplicates" to "Detect potential duplicate issues and apply a label" - Server list validation workflow: updated name from "Server list Validation" to Validate LinuxGSM serverlist.json format - Trigger docker build workflow: added more descriptive names for each job - Update copyright years in license file workflow: removed unnecessary dashes at the beginning, added a more concise description - Version check workflow: added a more concise descriptionpull/4245/head
11 changed files with 58 additions and 72 deletions
@ -1,4 +1,4 @@ |
|||||
name: Add to project |
name: Add to Project |
||||
on: |
on: |
||||
issues: |
issues: |
||||
types: |
types: |
||||
@ -7,10 +7,10 @@ on: |
|||||
|
|
||||
jobs: |
jobs: |
||||
add-to-project: |
add-to-project: |
||||
name: Add game server requests to project |
|
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- uses: actions/[email protected] |
- name: Add to Project |
||||
|
uses: actions/[email protected] |
||||
with: |
with: |
||||
project-url: https://github.com/orgs/GameServerManagers/projects/11 |
project-url: https://github.com/orgs/GameServerManagers/projects/11 |
||||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |
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 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. |
# This will allow LinuxGSM to use Bitbucket as and alternative download if github fails. |
||||
on: |
on: |
||||
@ -6,16 +6,17 @@ on: |
|||||
branches: |
branches: |
||||
- master |
- master |
||||
- develop |
- develop |
||||
|
|
||||
jobs: |
jobs: |
||||
GitHub-to-Bitbucket: |
gitHub-to-bitbucket: |
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- name: webfactory/[email protected] |
- name: SSH Agent |
||||
uses: webfactory/[email protected] |
uses: webfactory/[email protected] |
||||
with: |
with: |
||||
ssh-private-key: ${{ secrets.BITBUCKET_SECRET }} |
ssh-private-key: ${{ secrets.BITBUCKET_SECRET }} |
||||
|
|
||||
- name: wei/[email protected] |
- name: Git Sync |
||||
uses: wei/[email protected] |
uses: wei/[email protected] |
||||
with: |
with: |
||||
ssh_private_key: ${{ secrets.BITBUCKET_SECRET }} |
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: |
on: |
||||
issues: |
issues: |
||||
types: [opened, edited] |
types: |
||||
pull_request: |
- opened |
||||
types: [opened, edited] |
- edited |
||||
|
|
||||
permissions: |
permissions: |
||||
|
issues: write |
||||
contents: read |
contents: read |
||||
|
|
||||
jobs: |
jobs: |
||||
triage: |
issue-labeler: |
||||
permissions: |
|
||||
contents: read # for github/issue-labeler to get repo contents |
|
||||
issues: write # for github/issue-labeler to create or remove labels |
|
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- uses: github/[email protected] |
- name: Issue Labeler |
||||
|
uses: github/[email protected] |
||||
with: |
with: |
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
||||
configuration-path: .github/labeler.yml |
configuration-path: .github/labeler.yml |
||||
not-before: |
|
||||
enable-versioned-regex: 0 |
enable-versioned-regex: 0 |
||||
include-title: 1 |
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: |
release: |
||||
types: |
types: |
||||
- published |
- published |
||||
|
|
||||
jobs: |
jobs: |
||||
trigger_build_docker-linuxgsm: |
trigger_build_docker-linuxgsm: |
||||
name: Trigger Build docker-linuxgsm |
|
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- uses: convictional/[email protected] |
- name: Trigger Workflow and Wait (linuxgsm) |
||||
|
uses: convictional/[email protected] |
||||
with: |
with: |
||||
owner: GameServerManagers |
owner: GameServerManagers |
||||
repo: docker-linuxgsm |
repo: docker-linuxgsm |
||||
@ -16,10 +17,10 @@ jobs: |
|||||
workflow_file_name: docker-publish.yml |
workflow_file_name: docker-publish.yml |
||||
|
|
||||
trigger_build_docker-gameserver: |
trigger_build_docker-gameserver: |
||||
name: Trigger Build docker-linuxgsm |
|
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- uses: convictional/[email protected] |
- name: Trigger Workflow and Wait (gameserver) |
||||
|
uses: convictional/[email protected] |
||||
with: |
with: |
||||
owner: GameServerManagers |
owner: GameServerManagers |
||||
repo: docker-gameserver |
repo: docker-gameserver |
||||
|
Loading…
Reference in new issue