Skip to content

Commit bb27873

Browse files
committed
Add stub for nightly release job
I cannot iterate in CI using the gh CLI unless a workflow already exists in the main branch. Same issue as seen in this stack overflow https://stackoverflow.com/questions/74898693/gh-workflow-run-not-working-for-particular-branch Add a placeholder stub. This workflow does not publish anything so it should be safe to land without review.
1 parent c404aee commit bb27873

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'PyPI Release: Nightly (pinecone-client-nightly)'
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
run-tests:
8+
uses: './.github/workflows/testing.yaml'
9+
10+
pypi-nightly:
11+
needs: run-tests
12+
timeout-minutes: 30
13+
name: pypi-nightly
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: greeting
17+
run: echo "Hello World"

0 commit comments

Comments
 (0)