Skip to content

Commit 9092c6e

Browse files
mergify[bot]donoghucyaauie
authored
Add stub workflow file to iterate on (#17993) (#18043)
* Add stub workflow file to iterate on This commit adds a stub GH action to be used for iterating on https://github.com/elastic/logstash/pull/17945/files this was based on a suggestion from the infra team for developing these workflows. Notably this has a pull_request trigger which will allow us to run the workflow from a PR raised from a test branch in the elastic/logstash repo. * Update .github/workflows/bump-java-version.yml * Update .github/workflows/bump-java-version.yml --------- (cherry picked from commit ef41e83) Co-authored-by: Cas Donoghue <[email protected]> Co-authored-by: Rye Biesemeyer <[email protected]>
1 parent 40ac18f commit 9092c6e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Stub GH action for devoping new workflows [STUB]
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
permissions:
8+
pull-requests: write
9+
contents: write
10+
11+
jobs:
12+
stub_job_name:
13+
name: Stub Job
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Stub step
17+
run: |
18+
echo "Stub to iterate via PR"
19+

0 commit comments

Comments
 (0)