Skip to content

Initial import

Initial import #2

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Test
id: test
uses: ./
with:
commit-message: |
Use external action
Run-GHA: true
Skip-PR-comments: true
Test-tag: always_passes,vm
Required-githooks: true
Signed-off-by: Brian J. Murrell <[email protected]>
- name: Test value
run: |
set -eux
if [ '${{ env.CP_TEST_TAG }}' != 'always_passes,vm' ]; then
echo "Value is not 'always_passes,vm'"
exit 1
fi