Skip to content

.github/workflows/pipeline.yml #35

.github/workflows/pipeline.yml

.github/workflows/pipeline.yml #35

Workflow file for this run

on:
push:
branches: ['*']
pull_request:
workflow_dispatch:
jobs:
check-conventional-commits:
uses: armakuni/github-actions/.github/workflows/[email protected]
lint-pipeline:
uses: armakuni/github-actions/.github/workflows/[email protected]
generate-terraform-docs:
if: github.ref == 'refs/heads/main'
uses: armakuni/github-actions/.github/workflows/[email protected]
with:
output-file: README.md
# This artifact is referenced by the cog.toml
artifact-name: terraform-docs
create-release:
needs:
- check-conventional-commits
- lint-pipeline
if: github.ref == 'refs/heads/main'
uses: armakuni/github-actions/.github/workflows/[email protected]
permissions:
contents: write
with:
download-artifacts: true
demo:
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v4
- run: echo "Hello world"