Browse Source

no synced file(s) with dgibbs64/repo-sync (#71)

* no synced local '.github/' with remote 'general/.github/'

* no synced local './' with remote 'docker/'
pull/72/head
Daniel Gibbs 1 week ago
committed by GitHub
parent
commit
a2c8392df5
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      .github/FUNDING.yml
  2. 8
      .github/workflows/dockerhub-description.yml
  3. 21
      .github/workflows/keepalive.yml

2
.github/FUNDING.yml

@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with a single custom sponsorship URL
custom: # Replace with a single custom sponsorship URL

8
.github/workflows/dockerhub-description.yml

@ -2,13 +2,15 @@ name: Update Docker Hub Description
on:
workflow_dispatch:
push:
branches: main
paths:
- README.md
- .github/workflows/dockerhub-description.yml
branches:
- main
jobs:
dockerhub-description:
name: Update Docker Hub Description
name: Docker Hub Description
runs-on: ubuntu-latest
steps:
- name: Checkout
@ -19,5 +21,5 @@ jobs:
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
repository: gameservermanagers/steamcmd
repository: ${{ vars.DOCKER_HUB_REPO }}
short-description: ${{ github.event.repository.description }}

21
.github/workflows/keepalive.yml

@ -0,0 +1,21 @@
name: Keepalive Workflow
on:
schedule:
- cron: "0 0 * * *"
jobs:
main-job:
name: Main Job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - step1
# - step 2
# - Step N
keepalive-job:
name: Keepalive Workflow
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- uses: actions/checkout@v4
- uses: gautamkrishnar/keepalive-workflow@v2
Loading…
Cancel
Save