From 12421cff53056cf51575aa9d70206c438b22e4e9 Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Tue, 9 Dec 2025 12:05:34 -0500 Subject: [PATCH] Various actions updates * Sort "on" targets * Ensure push branch-ignores for dependabot and renovate * Ensure concurrency section * Ensure permissions section * Ensure we don't word-wrap long lines --- .github/workflows/ci.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index faa4957..376827b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,11 +1,19 @@ name: CI on: - push: pull_request: + push: + branches-ignore: + - dependabot/* + - renovate/* schedule: - - cron: '0 0 * * 0' - + - cron: 0 0 * * 0 + workflow_dispatch: +concurrency: + group: "${{ github.workflow }}-${{ github.ref }}" + cancel-in-progress: true +permissions: + contents: read jobs: ci: runs-on: ubuntu-latest