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: |
|||
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