mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
When a PR was opened, thus for the first commits push, aws builds weren't triggered. The workflow was only executed when commits were pushed once again (synchronize event).
19 lines
382 B
YAML
19 lines
382 B
YAML
# Trigger an AWS build each time commits are pushed to a pull request.
|
|
name: PR AWS build trigger
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: mshick/add-pr-comment@v2
|
|
with:
|
|
allow-repeats: true
|
|
message: |
|
|
@slab-ci cpu-build
|
|
@slab-ci gpu-build
|