From 8eced6d4187b8aea1160e87cb4d2361c0ad21465 Mon Sep 17 00:00:00 2001 From: Noelle Caldwell Date: Tue, 22 Jun 2021 07:56:52 -0700 Subject: [PATCH 1/5] Create github-richnav-prod --- .github/workflows/github-richnav-prod | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/github-richnav-prod diff --git a/.github/workflows/github-richnav-prod b/.github/workflows/github-richnav-prod new file mode 100644 index 0000000..619c0d0 --- /dev/null +++ b/.github/workflows/github-richnav-prod @@ -0,0 +1,32 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: [ main ] + pull_request: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Setup Java JDK + uses: actions/setup-java@v2.1.0 + with: + java-version: '11' + distribution: 'zulu' + - uses: actions/checkout@v2 + - name: Rich Code Nav Indexer + - uses: microsoft/RichCodeNavIndexer@v0.1.11 + with: + languages: javascript,cpp,csharp,java + environment: production + From 4502c438f0898cf881978806a07ee1395932a423 Mon Sep 17 00:00:00 2001 From: Noelle Caldwell Date: Tue, 22 Jun 2021 07:57:43 -0700 Subject: [PATCH 2/5] Update github-richnav-prod --- .github/workflows/github-richnav-prod | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/github-richnav-prod b/.github/workflows/github-richnav-prod index 619c0d0..01b3725 100644 --- a/.github/workflows/github-richnav-prod +++ b/.github/workflows/github-richnav-prod @@ -8,7 +8,6 @@ on: push: branches: [ main ] pull_request: - branches: [ main ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: From 9e056e4578e5e6b9425d3fe75f473aa95bf7a76e Mon Sep 17 00:00:00 2001 From: Noelle Caldwell Date: Wed, 23 Jun 2021 15:42:42 -0700 Subject: [PATCH 3/5] Update github-richnav-prod --- .github/workflows/github-richnav-prod | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-richnav-prod b/.github/workflows/github-richnav-prod index 01b3725..cf2be82 100644 --- a/.github/workflows/github-richnav-prod +++ b/.github/workflows/github-richnav-prod @@ -23,9 +23,10 @@ jobs: java-version: '11' distribution: 'zulu' - uses: actions/checkout@v2 + - uses: jepetty/debug-action@master - name: Rich Code Nav Indexer - uses: microsoft/RichCodeNavIndexer@v0.1.11 with: languages: javascript,cpp,csharp,java - environment: production + environment: development From cb8b1f7416b736123b48a2d610136a8606dcf666 Mon Sep 17 00:00:00 2001 From: Noelle Caldwell Date: Wed, 23 Jun 2021 15:44:33 -0700 Subject: [PATCH 4/5] Update github-richnav-prod --- .github/workflows/github-richnav-prod | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-richnav-prod b/.github/workflows/github-richnav-prod index cf2be82..275fe42 100644 --- a/.github/workflows/github-richnav-prod +++ b/.github/workflows/github-richnav-prod @@ -4,12 +4,10 @@ name: CI # Controls when the action will run. on: - # Triggers the workflow on push or pull request events but only for the main branch - push: - branches: [ main ] pull_request: - - # Allows you to run this workflow manually from the Actions tab + push: + branches: + - main workflow_dispatch: jobs: From ec9b41d390b24026e61dc11dfc07221b3ae53776 Mon Sep 17 00:00:00 2001 From: Noelle Caldwell Date: Wed, 23 Jun 2021 15:44:51 -0700 Subject: [PATCH 5/5] Rename github-richnav-prod to github-richnav-dev --- .github/workflows/{github-richnav-prod => github-richnav-dev} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{github-richnav-prod => github-richnav-dev} (100%) diff --git a/.github/workflows/github-richnav-prod b/.github/workflows/github-richnav-dev similarity index 100% rename from .github/workflows/github-richnav-prod rename to .github/workflows/github-richnav-dev