From 4af41806912df3b809494994a468ab1eb88ad3f3 Mon Sep 17 00:00:00 2001 From: ChiaAutomation <85647627+ChiaAutomation@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:44:46 -0500 Subject: [PATCH] Update Managed Files (#206) --- .github/workflows/check-commit-signing.yml | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/check-commit-signing.yml diff --git a/.github/workflows/check-commit-signing.yml b/.github/workflows/check-commit-signing.yml new file mode 100644 index 0000000..fa34811 --- /dev/null +++ b/.github/workflows/check-commit-signing.yml @@ -0,0 +1,29 @@ +name: 🚨 Check commit signing + +on: + push: + branches: + - long_lived/** + - main + - release/** + pull_request: + branches: + - "**" + +concurrency: + group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }} + cancel-in-progress: true + +jobs: + check-commit-signing: + name: Check commit signing + runs-on: [ubuntu-latest] + timeout-minutes: 5 + + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: chia-network/actions/check-commit-signing@main