From d9db9747418437079610d315e021e47b1c28ee7d Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Wed, 16 Apr 2025 12:32:33 +0200 Subject: [PATCH] add GitHub actions for release and checks --- .github/workflows/release.yml | 12 ++++++++++++ .github/workflows/run-checks.yml | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/release.yml create mode 100644 .github/workflows/run-checks.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..a8e12d0 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,12 @@ +name: Release + +on: + workflow_dispatch: + +jobs: + release: + uses: swordsteel/hlaeja-common-workflows/.github/workflows/release.yml@master + secrets: + CI_BOT_PAT: ${{ secrets.CI_BOT_PAT }} + with: + TYPE: service diff --git a/.github/workflows/run-checks.yml b/.github/workflows/run-checks.yml new file mode 100644 index 0000000..291340e --- /dev/null +++ b/.github/workflows/run-checks.yml @@ -0,0 +1,12 @@ +name: Pull request validation + +on: + pull_request: + paths-ignore: + - '.github/**' + +jobs: + validate: + uses: swordsteel/hlaeja-common-workflows/.github/workflows/run-checks.yml@master + secrets: + CI_BOT_PAT: ${{ secrets.CI_BOT_PAT }}