Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,13 @@ github:
required_conversation_resolution: false

dependabot_alerts: true
dependabot_updates: false
dependabot_updates: false

# Configure ASF Inframail routing parameters
notifications:
commits: commits@datasketches.apache.org
issues: dev@datasketches.apache.org
pullrequests: dev@datasketches.apache.org
# Setting jobs to an empty string completely silences
# GitHub Actions success/failure emails to the dev list.
jobs: ""
17 changes: 17 additions & 0 deletions .github/workflows/placeholder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Placeholder for Manual Trigger

# Prototype skeleton to register the workflow name and manual dispatch
# switch with GitHub's UI on the default branch.
# This placeholder allows full testing inside development branches
# for this .github/workflows/<filename>.
# Once the developed WF is ready to push rename the developed WF to its real name.

on:
workflow_dispatch:

jobs:
placeholder:
runs-on: ubuntu-latest
steps:
- name: Prototype Placeholder
run: echo "This is a placeholder. Run this workflow from your feature branch to execute the real deployment logic."