Skip to content

cacheserver/workflows

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

About

A shared-workflow for various tasks for @cacheserver.

Example

Here is an example of how to use this workflow in your repository. It can be used in other workflows by calling it with the appropriate inputs.

.github/workflows/use-docker.yml

name: Docker

on:
  workflow_dispatch:
  push:
    branches:
      - main
      - develop
  pull_request:
    types: [opened, synchronize, reopened]

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

jobs:
  docker:
    uses: cacheserver/workflows/.github/workflows/use-docker.yml@main
    permissions:
      contents: read
      packages: write
    with:
      push: ${{ github.event_name != 'pull_request' }}

About

A shared-workflow for various tasks for @cacheserver.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published