8000 Call Notify External Repositories from Invoke CI by maiadegraaf · Pull Request #16747 · duckdb/duckdb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Call Notify External Repositories from Invoke CI #16747

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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 8000 load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/InvokeCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,37 @@ jobs:
override_git_describe: ${{ inputs.override_git_describe }}
git_ref: ${{ inputs.git_ref }}
skip_tests: ${{ inputs.skip_tests }}

notify-external-repos-main:
uses: ./.github/workflows/NotifyExternalRepositories.yml
secrets: inherit
needs:
- osx
- linux-release
- windows
- python
- pyodide
- R
- Wasm
- static-libraries
if: ${{ inputs.git_ref == '' }}
with:
target-branch: ${{ github.ref_name }}
duckdb-sha: ${{ github.head_ref }}

notify-specific-branch-on-external-repos:
uses: ./.github/workflows/NotifyExternalRepositories.yml
secrets: inherit
needs:
- osx
- linux-release
- windows
- python
- pyodide
- R
- Wasm
- static-libraries
if: ${{ inputs.git_ref != '' }}
with:
target-branch: ${{ github.ref_name }}
duckdb-sha: ${{ inputs.git_ref }}

12 changes: 12 additions & 0 deletions .github/workflows/NotifyExternalRepositories.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
name: Notify External Repositories
on:
workflow_call:
inputs:
duckdb-sha:
description: 'Vendor Specific DuckDB SHA'
required: false
default: ''
type: 'string'
target-branch:
description: 'Which Branch to Target'
required: true
default: ''
type: 'string'
workflow_dispatch:
inputs:
duckdb-sha:
Expand Down
0