Skip to content

make: act-automate: act-docker-shell #84

make: act-automate: act-docker-shell

make: act-automate: act-docker-shell #84

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: docker.shell
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
#paths:
# - '.github/workflows/automate.yml'
schedule:
- cron: "*/5 * * * *"
branches: #[ master ]
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
- 'master' # includes master
- 'main' # includes main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
u20-host:
runs-on: ubuntu-20.04
steps:
## REF: https://githubmemory.com/repo/Gisleburt/cancel-workflow-action
- uses: styfle/cancel-workflow-action@0.8.0
if: ${{ !env.ACT }}
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- name: Make
run: |
make
ulatest-host:
runs-on: ubuntu-latest
steps:
## REF: https://githubmemory.com/repo/Gisleburt/cancel-workflow-action
- uses: styfle/cancel-workflow-action@0.8.0
if: ${{ !env.ACT }}
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- name: Make
run: |
make