INFO: This action just have one active version -> master!
- master
If not already done, add following folder structure to the project (name of the yml-file is up to you).
.
└── .github/
└── workflows/
└── check.yml
Example:
In this example just the 'staging'-Branch is deployed! read more about 'on:' here: https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#on
name: Check
on:
push:
branches:
- staging
jobs:
build:
name: Check vulnerabilities
runs-on: ubuntu-18.04
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Security Check
uses: helllicht/security-check@master
- ...
Breaking changes are not allowed when updating an active version!
- ...change code
- commit & push
Make release note with a short overview.
- ...change code
- commit & push