Browse Source

tidy

pull/4207/head
Daniel Gibbs 2 years ago
parent
commit
cec0af79bb
  1. 6
      .github/workflows/serverlist-validate.yml
  2. 11
      .github/workflows/version-check.yml

6
.github/workflows/serverlist-validate.yml

@ -4,16 +4,10 @@ on:
push: push:
jobs: jobs:
# This workflow contains a single job called "build"
serverlist-validate: serverlist-validate:
# The type of runner that the job will run on
runs-on: ubuntu-latest runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3 - uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: compare versions - name: compare versions
run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh

11
.github/workflows/version-check.yml

@ -1,26 +1,15 @@
# This is a basic workflow to help you get started with Actions
name: Version Check name: Version Check
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: push on: push
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
permissions: permissions:
contents: read contents: read
jobs: jobs:
# This workflow contains a single job called "build"
version-Check: version-Check:
# The type of runner that the job will run on
runs-on: ubuntu-latest runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3 - uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: compare versions - name: compare versions
run: chmod +x .github/workflows/version-check.sh; .github/workflows/version-check.sh run: chmod +x .github/workflows/version-check.sh; .github/workflows/version-check.sh

Loading…
Cancel
Save