We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66237de commit 5d236b6Copy full SHA for 5d236b6
.github/workflows/trigger-manifest-generation.yml
@@ -0,0 +1,17 @@
1
+name: Trigger manifest generation workflow
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ paths:
7
+ - buildSrc/version.properties
8
9
+jobs:
10
+ trigger-manifest-workflow:
11
+ if: github.repository == 'opensearch-project/OpenSearch'
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Trigger manifest-update workflow
15
+ run: |
16
+ echo "Triggering manifest-update workflow at https://build.ci.opensearch.org/job/manifest-update/"
17
+ curl -f -X POST https://build.ci.opensearch.org/job/manifest-update/build --user "${{ secrets.JENKINS_GITHUB_USER}}:${{ secrets.JENKINS_GITHUB_USER_TOKEN}}"
0 commit comments