mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-09 14:47:56 -05:00
The term "bpr" means Branch Protection Rule. It helps one to identify any job that must pass before being able to merge to the base branch.
17 lines
329 B
YAML
17 lines
329 B
YAML
# Placeholder workflow file allowing running it without having to merge to main first
|
|
name: placeholder_workflow
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
placeholder:
|
|
name: placeholder_workflow/placeholder
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- run: |
|
|
echo "Hello this is a Placeholder Workflow"
|