Browse Source

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

tags/v0.3.25^2
Ralf Gommers 2 years ago
parent
commit
8613632dc5
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      .github/workflows/arm64_graviton.yml

+ 9
- 1
.github/workflows/arm64_graviton.yml View File

@@ -1,6 +1,14 @@
name: arm64 graviton cirun name: arm64 graviton cirun


on: [push, pull_request]
on:
push:
branches:
- develop
- release-**
pull_request:
branches:
- develop
- release-**


concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}


Loading…
Cancel
Save