Trigger AWS Graviton 3 CI job only for develop and release branches

This commit is contained in:
Ralf Gommers 2023-11-10 16:23:44 +01:00
parent 2418a20f1f
commit 8613632dc5
1 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,14 @@
name: arm64 graviton cirun
on: [push, pull_request]
on:
push:
branches:
- develop
- release-**
pull_request:
branches:
- develop
- release-**
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}